CSS Grid Layout を試す

(1) コンポーネントとして使う(レイアウトではなく)

(1-1) ライン番号でアイテムを指定するパターン

A
B
C

HTML

<div id="container1"> <!-- コンテナ -->
  <div id="itemA1">A</div> <!-- アイテム -->
  <div id="itemB1">B</div> <!-- アイテム -->
  <div id="itemC1">C</div> <!-- アイテム -->
</div>

CSS

#container1 {
    display: grid;
    grid-template-rows: 100px 50px;
    grid-template-columns: 150px 1fr;
}

#itemA1 {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    background: #f88;
}
#itemB1 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    background: #8f8;
}
#itemC1 {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    background: #88f;
}

(1-1) エリアの名前を使ってアイテムを指定するパターン

A
B
C

HTML

<div id="container2"> <!-- コンテナ -->
  <div id="itemA2">A</div> <!-- アイテム -->
  <div id="itemB2">B</div> <!-- アイテム -->
  <div id="itemC2">C</div> <!-- アイテム -->
</div>

CSS

#container2 {
    display: grid;
    grid-template-rows: 100px 50px;
    grid-template-columns: 150px 1fr;
    grid-template-areas:
        "areaA areaB"
        "areaA areaC";
}

#itemA2 {
    grid-area: areaA;
    background: #f88;
}
#itemB2 {
    grid-area: areaB;
    background: #8f8;
}
#itemC2 {
    grid-area: areaC;
    background: #88f;
}

レイアウトに使う その1

レイアウトに使う その2

仕様

参考