- define grid container element (parent) ->
display: grid
- set its column and row sizes ->
grid-template-columns
andgrid-template-rows
- place grid items (children) into the grid ->
grid-column
andgrid-row
- children are only the direct descendants of the parent element
- Note: column, float, clear, and vertical-align have no effect on a grid container.