Style.Align_contentSourceSets the distribution of space between and around content items.
For Flexbox it controls alignment in the cross axis. For Grid it controls alignment in the block axis.
See MDN: align-content.
type t = | StartPack items toward the start of the axis.
*)| EndPack items toward the end of the axis.
*)| Flex_startPack items toward the flex-relative start of the axis.
For flex containers with flex_direction Row_reverse or Column_reverse, this is equivalent to End. In all other cases it is equivalent to Start.
| Flex_endPack items toward the flex-relative end of the axis.
For flex containers with flex_direction Row_reverse or Column_reverse, this is equivalent to Start. In all other cases it is equivalent to End.
| CenterCenter items around the middle of the axis.
*)| StretchStretch items to fill the container.
*)| Space_betweenDistribute items evenly with the first item flush with the start and the last item flush with the end.
The gap between items is distributed evenly. No gap exists between the container edges and the first/last items.
*)| Space_evenlyDistribute items evenly with equal spacing between all items and container edges.
The gap between the container edges and the first/last items is exactly the same as the gap between items.
*)| Space_aroundDistribute items evenly with half-size gaps at the container edges.
The gap between the container edges and the first/last items is exactly half the gap between items.
*)