Slide 101
Slide 101 text
Defining the 12 column
grid.
We define Grid Tracks
that will be used as
columns, preceded by a
line named ‘col’ and those
used as gutters, preceded
by a line named ‘gutter’.
.wrapper {
display: grid;
grid-template-columns:
repeat(11, [col] 4fr [gutter] 3.5fr ) [col] 4fr [gutter];
grid-template-rows:
auto repeat(4, [row] auto [gutter] 15px);
}