CSS Grid は二次元のレイアウトシステムであり、Flexbox の単一の軸とは異なり、行と列を同時に制御します。コンテナにグリッドを定義し、その中にアイテムを配置します。
css
.grid {
display: grid;
grid-template-columns: 200px 1fr 1fr; /* 3 columns: fixed, then two flexible */
grid-template-rows: auto 1fr auto; /* 3 rows */
: ;
}
