Grid Track
2本のGrid Lineの間の空間のこと
雑に言えば、gridの行または列のこと
Grid TrackのサイズのことをGrid Track Sizeと呼ぶ
以下のpropertyを使って指定する
grid-template-rows
grid-template-columns
https://developer.mozilla.org/ja/docs/Glossary/Grid_Tracks
code:css
.wrapper {
display: grid;
grid-template-columns: 200px 1fr 3fr;
}
https://gyazo.com/fc5aafd2e200034033c20989df8a8541
3つの列trackがある
Grid Track Sizeは、左から200px, 1fr, 2frになっている
2つの行trackがある
6つのGrid Cellがある