reading-notes

My reading notes


Project maintained by brandomoki Hosted on GitHub Pages — Theme by mattgraham

Read Class 08

Learn CSS - Flexbox

  1. Flexbox is designed for one-dimensional content. Explain what this means.

    • This means you only control a single direction in columns and rows
  2. Explain the difference between the main axis and cross axis

    *

  3. How can using certain properties of flexbox negatively impact accessibility?

    • Main is the one you set
    • Cross is the opposite of your main either column or row

CSS Layout - Flexbox

  1. What are some advantages of using flexbox over float?

    • Positioning child elements becomes easier with flexbox, Flexbox is responsive and mobile-friendly, Flex container’s margins do not collapse with the margins of its content (geeksforgeeks.org)