Table of Contents

Enum Grid.JustifyItems

Namespace
Xui.Core.UI.Layout
Assembly
Xui.Core.dll

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 = 7

Items are aligned along their first baseline.

Center = 4

Items are centered along the inline axis.

End = 3

Items are packed toward the end of the inline axis.

FirstBaseline = 8

Items are aligned along their first baseline (same as Baseline).

LastBaseline = 9

Items are aligned along their last baseline.

Left = 5

Items are packed toward the left end of the inline axis.

Normal = 0

Browser default. Acts like Stretch.

Right = 6

Items are packed toward the right end of the inline axis.

Start = 2

Items are packed toward the start of the inline axis.

Stretch = 1

Items are stretched to fill the grid area inline size.