Interactive flexbox properties and values
display: flex;Enable flexbox on container
flex-direction: row | column | row-reverse | column-reverse;Main axis direction
justify-content: flex-start | center | space-between | space-around | space-evenly;Align items along main axis
align-items: stretch | flex-start | center | flex-end | baseline;Align items along cross axis
flex-wrap: nowrap | wrap | wrap-reverse;Allow items to wrap
gap: 10px;Space between flex items
flex-grow: 1;How much item should grow
flex-shrink: 0;How much item should shrink
flex-basis: 200px;Initial size before grow/shrink
flex: 1 0 200px;grow shrink basis
align-self: flex-end;Override container align-items
order: 2;Reorder items visually