Enum Grid.AlignContent
Aligns the grid along the block axis within the container when the grid is smaller than the container.
Corresponds to the CSS align-content property on a grid container.
public enum Grid.AlignContent : byte
Fields
Center = 3Rows are centered on the block axis.
End = 2Rows are packed toward the end of the block axis.
FirstBaseline = 8Rows are aligned along their first baseline.
LastBaseline = 9Rows are aligned along their last baseline.
Normal = 0Browser default. Acts like Stretch.
SpaceAround = 5Rows are evenly distributed with equal space around each row.
SpaceBetween = 4Rows are evenly distributed; first row at start, last at end.
SpaceEvenly = 6Rows are evenly distributed with equal space between all rows including edges.
Start = 1Rows are packed toward the start of the block axis.
Stretch = 7Rows are stretched to fill the container block size.