img(src="images/flex-align-content.png")
This aligns a flex container's lines within when there is extra space in the cross-axis, similar to how justify-content aligns individual items within the main-axis.
Order
p By default, flex items are laid out in the source order. However, the order property controls the order in which they appear in the flex container.Flex grow
This defines the ability for a flex item to grow if necessary. It accepts a unitless value that serves as a proportion. It dictates what amount of the available space inside the flex container the item should take up.Flex shrink
This defines the ability for a flex item to shrink if necessary.Flex basis
This defines the default size of an element before the remaining space is distributed. It can be a length (e.g. 20%, 5rem, etc.) or a keyword.Align self
This allows the default alignment (or the one specified by align-items) to be overridden for individual flex items. ----