Instructions
This exercise will work with CSS flexbox and CSS grids. Flexbox handles one dimension (x or y), while Grid handles both.
View Rachel Andrew's video to see how to develop a layout from scratch.
Setting up the Grid
- Change display to
gridto turn children into grid items. - Use
grid-template-columns: 1fr 1fr 1fr;for wide screens. - Use
grid-column: 1 / span 3;for header and footer.