Enum Grid.JustifyItems
Sets the default justify-self for all items, aligning them along the inline axis within their grid area.
Corresponds to the CSS justify-items property.
public enum Grid.JustifyItems : byte
Fields
Baseline = 7Items are aligned along their first baseline.
Center = 4Items are centered along the inline axis.
End = 3Items are packed toward the end of the inline axis.
FirstBaseline = 8Items are aligned along their first baseline (same as Baseline).
LastBaseline = 9Items are aligned along their last baseline.
Left = 5Items are packed toward the left end of the inline axis.
Normal = 0Browser default. Acts like Stretch.
Right = 6Items are packed toward the right end of the inline axis.
Start = 2Items are packed toward the start of the inline axis.
Stretch = 1Items are stretched to fill the grid area inline size.