Enum FlexBox.AlignItems
Sets the default cross-axis alignment for all flex items on a line.
Corresponds to the CSS align-items property on a flex container.
public enum FlexBox.AlignItems : byte
Fields
Baseline = 5Items are aligned along their first baseline.
Center = 4Items are centered on the cross axis.
FirstBaseline = 6Items are aligned along their first baseline (same as Baseline).
FlexEnd = 3Items are packed toward the flex-end edge of the cross axis.
FlexStart = 2Items are packed toward the flex-start edge of the cross axis.
LastBaseline = 7Items are aligned along their last baseline.
Normal = 0Browser default. Acts like Stretch.
Stretch = 1Items are stretched to fill the cross axis.