Enum FlexBox.JustifyContent
Aligns flex items along the main axis when there is free space.
Corresponds to the CSS justify-content property on a flex container.
public enum FlexBox.JustifyContent : byte
Fields
Center = 3Items are centered along the main axis.
End = 8Items are packed toward the end of the main axis.
FlexEnd = 2Items are packed toward the flex-end edge of the main axis.
FlexStart = 1Items are packed toward the flex-start edge of the main axis.
Normal = 0Browser default. Acts like FlexStart.
SpaceAround = 5Items are evenly distributed with equal space around each item.
SpaceBetween = 4Items are evenly distributed; first item at start, last at end.
SpaceEvenly = 6Items are evenly distributed with equal space between all items including edges.
Start = 7Items are packed toward the start of the main axis.