Enum Grid.AlignItems
Sets the default block-axis alignment for all grid items within their grid areas.
Corresponds to the CSS align-items property on a grid container.
public enum Grid.AlignItems : byte
Fields
Baseline = 5Items are aligned along their first baseline.
Center = 4Items are centered on the block axis.
End = 3Items are packed toward the end of the block axis.
FirstBaseline = 6Items are aligned along their first baseline (same as Baseline).
LastBaseline = 7Items are aligned along their last baseline.
Normal = 0Browser default. Acts like Stretch.
Start = 2Items are packed toward the start of the block axis.
Stretch = 1Items are stretched to fill the grid area block size.