reading-notes

CSS Flexbox

Readings

Notes

What is Flexbox?

Why Flexbox?

Simple Example

The Flex Model

Wrapping

Flex-Flow Shorthand

flex-direction: row;
flex-wrap: warp;

/*becomes*/
flex-flow: row warp;

Flex Sizing

Suggestion for Navigation Buttons in Header Menu

div {
  display: flex;
  align-items: center;
  justify-content: space-around;
}