- Grid Container
- Grid Item
- Grid Line
- Grid Track
- Grid Cell
- Grid Area
display: grid - the direct parent of all the grid items
In this example, container is the grid container.
# html
<div class="container">
<div class="item item-1"></div>
<div class="item item-2"></div>
<div class="item item-3"></div>
</div>
The children (e.g. direct descendants) of the grid container.
Here, the item elements are grid elements, but sub-item isn't.
# html
<div class="container">
<div class="item"></div>
<div class="item">
<p class="sub-item"></p>
</div>
<div class="item"></div>
</div>
The dividing line that make up the structure of the grid.
- can be either vertical("column grid lines") / horizontal("row grid lines")
- reside on either side of a row or column
Here the yellow line is an example of a column grid line.

The space between two adjacent grid lines.
You can think them like the columns or rows of the grid.
Here's the grid track between the second and thid row grid lines.

The space between two adjacent row and two adjacent column grid lines.
a single "unit" of the grid
Here's the grid cell between row grid lines 1 and 2, and column grid lines 2 and 3.

The total space surrounded by four grid lines.
A grid area = any number of grid cells
Here's the grid area between row grid lines 1 and 3, and column grid lines 1 and 3.
