Line 7: | Line 7: | ||
grid-template-columns: auto auto auto; | grid-template-columns: auto auto auto; | ||
background-color: #2196F3; | background-color: #2196F3; | ||
− | padding: | + | padding: 0px; |
} | } | ||
.grid-item { | .grid-item { |
Revision as of 05:37, 16 October 2018
Grid Elements
A Grid Layout must have a parent element with the display property set to grid or inline-grid.
Direct child element(s) of the grid container automatically becomes grid items.
2
3
4
5
6
7
8
9