Week 6: Flex, Grids, Floats
CSS Float, Clear and Heights
- Floats were the first way that designers were able to create columns with CSS.
- Learn more
Flexbox
- In recent years another method for creating layout was added to CSS - Flexbox.
- It starts with using
display: flex
and then you define two parts - the container and the items inside the container. - Learn more
CSS Grids
- Flexbox is fantastic at creating a single column or a single row. It even has properties for handling overflowing content.
- However, if you want to control a more complex layout and treat it like a grid then CSS Grids tend to be a better option.
- Learn more
What to do Before Week 7
TODO
- Look through all the links and watch the videos that are linked to on this page