Enum FlexBox.AlignContent
Aligns flex lines along the cross axis when there is extra space (only applies when wrapping).
Corresponds to the CSS align-content property on a flex container.
public enum FlexBox.AlignContent : byte
Fields
Center = 3Lines are centered on the cross axis.
FirstBaseline = 8Lines are aligned along their first baseline.
FlexEnd = 2Lines are packed toward the flex-end edge of the cross axis.
FlexStart = 1Lines are packed toward the flex-start edge of the cross axis.
LastBaseline = 9Lines are aligned along their last baseline.
Normal = 0Browser default. Acts like Stretch.
SpaceAround = 5Lines are evenly distributed with equal space around each line.
SpaceBetween = 4Lines are evenly distributed; first line at start, last at end.
SpaceEvenly = 6Lines are evenly distributed with equal space between all lines including edges.
Stretch = 7Lines are stretched to fill the container.