there is a sample of some CSS Grid representing a 6 column grid.
1 | .the6ColGrid { |
In this case, the first statement is the grid container defining a 6 column grid. The second and third statements are special grid items. The first is the first 3 columns, the second is the last 3 columns.
Here is an of how this is used.
1 | <div class="the6ColGrid"> |
So in summary, the grid is defined in the CSS, and then the grid items are defined in the next container tags defined under the grid tag. Each container tag
is a column. You are expected to provide a container for each column.