Notes on flexbox from froggy
l1 - l4
- row: Items are placed the same as the text direction.
- row-reverse: Items are placed opposite to the text direction.
- column: Items are placed top to bottom.
- column-reverse: Items are placed bottom to top.
when you set the direction to a reversed row or column, start and end are also reversed.
Unlike the properties that we have seen, order
is applied to the individual items.
If order
has not been set, the default value is zero.
< 0: move to the front;
0: move to the back;
Similar to align-items, but on a individual item.
- nowrap: squeezed all the items into a single line
- wrap: allows items to be wrapped to additional lines
- wrap-reverse: wrap but in reverse
Combining flex-direction
and flex-wrap
- determine spacing b/t
lines
- align-items: determine where the items location inside the container.