HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

justify-items

Description

The justify-items property for CSS specifies the default justify-self for all of the child boxes (including anonymous boxes) participating in this box's formatting context.

Syntax

CSS

justify-items: value;

JS

object.style.justifyItems = "value";

Values

<'justify-items'> = normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]
normal

Represents the default alignment for the layout mode.

stretch

If the combined size of the alignment subjects is less than the size of the alignment container, any auto-sized alignment subjects have their size increased equally (not proportionally), while still respecting the constraints imposed by max-height/max-width (or equivalent functionality), so that the combined size exactly fills the alignment container.

<baseline-position> = [ first | last ]? baseline
first baseline

Specifies participation in first-baseline alignment: aligns the alignment baseline of the box's first baseline set with the corresponding baseline of its baseline-sharing group.

last baseline

Specifies participation in last-baseline alignment: aligns the alignment baseline of the box's last baseline set with the corresponding baseline of its baseline-sharing group.

baseline

Computes to first baseline.

<overflow-position> = unsafe | safe
unsafe

Regardless of the relative sizes of the alignment subject and alignment container, the given alignment value is honored.

safe

If the size of the alignment subject overflows the alignment container, the alignment subject is instead aligned as if the alignment mode were start.

<self-position> = center | start | end | self-start | self-end | flex-start | flex-end
center

Centers the alignment subject within its alignment container.

start

Aligns the alignment subject to be flush with the alignment container's start edge in the appropriate axis.

end

Aligns the alignment subject to be flush with the alignment container's end edge in the appropriate axis.

self-start

Aligns the alignment subject to be flush with the edge of the alignment container corresponding to the alignment subject's start side in the appropriate axis.

self-end

Aligns the alignment subject to be flush with the edge of the alignment container corresponding to the alignment subject's end side in the appropriate axis.

flex-start

Aligns the alignment subject to be flush with the edge of the alignment container corresponding to the flex container's main-start or cross-start side, as appropriate. Only used in flex layout.

flex-end

Aligns the alignment subject to be flush with the edge of the alignment container corresponding to the flex container's main-end or cross-end side, as appropriate. Only used in flex layout.

left

Aligns the alignment subject to be flush with the alignment container's line-left or physical left edge, whichever is in the appropriate axis.

right

Aligns the alignment subject to be flush with the alignment container's line-right or physical right edge, whichever is in the appropriate axis.

legacy

Causes the value to effectively inherit into descendants.

legacy left

Aligns the alignment subject to be flush with the alignment container's line-left or physical left edge, whichever is in the appropriate axis.

legacy right

Aligns the alignment subject to be flush with the alignment container's line-right or physical right edge, whichever is in the appropriate axis.

legacy center

Centers the alignment subject within its alignment container.

Initial

legacy

Examples

1 · normal

2 · stretch

3 · baseline-position · first baseline

4 · baseline-position · last baseline

5 · baseline-position · baseline

6 · overflow-position · unsafe

7 · overflow-position · safe

8 · self-position · center

9 · self-position · start

10 · self-position · end

11 · self-position · self-start

12 · self-position · self-end

13 · self-position · flex-start

14 · self-position · flex-end

15 · left

16 · right

17 · legacy

18 · legacy left

19 · legacy right

20 · legacy center

21 · JS