Flex Box
Flex Box
Flex Box
3. flex-direction - This CSS property defines the direction items are placed in
the container (OR DEFINES DIRECTION OF MAIN AXIS).
ex: .yellow {
order:1;}
eg: .yellow {
align-self:flex-end;}
6. flex-wrap property - Specifies whether flex items are forced on single line
or can be wrapped on multiple line.
7. flex-flow - The two properties flex-direction and flex-wrap are used so often
together that the shorthand property flex-flow was created to combine them. This
shorthand property accepts the value of one of the two properties separated by a
space.
For example, you can use flex-flow: row wrap to set rows and wrap them.
8. align-content - align-content (on cross axis) to set how multiple lines are
spaced apart from each other.
This can be confusing, but align-content determines the spacing between lines,
while align-items determines how the items as a whole are aligned within the
container. When there is only one line, align-content has no effect.