Enum Grid.JustifyContent
Aligns the grid along the inline axis within the container when the grid is smaller than the container.
Corresponds to the CSS justify-content property on a grid container.
public enum Grid.JustifyContent : byte
Fields
Center = 3Grid is centered along the inline axis.
End = 2Grid is packed toward the end of the inline axis.
Left = 4Grid is packed toward the left end of the inline axis.
Normal = 0Browser default. Acts like Start.
Right = 5Grid is packed toward the right end of the inline axis.
SpaceAround = 7Columns are evenly distributed with equal space around each column.
SpaceBetween = 6Columns are evenly distributed; first column at start, last at end.
SpaceEvenly = 8Columns are evenly distributed with equal space between all columns including edges.
Start = 1Grid is packed toward the start of the inline axis.
Stretch = 9Columns are stretched to fill the container inline size.