The CSS justify-items property defines the default justify-self for all items of the box, given them the default way of justifying each box along the appropriate axis.
/* Basic keywords */ justify-items: auto; justify-items: normal; justify-items: stretch; /* Positional alignment */ justify-items: center; /* Pack items around the center */ justify-items: start; /* Pack items from the start */ justify-items: end; /* Pack items from the end */ justify-items: flex-start; /* Pack flex items from the start */ justify-items: flex-end; /* Pack flex items from the end */ justify-items: self-start; justify-items: self-end; justify-items: left; /* Pack items from the left */ justify-items: right; /* Pack items from the right */ /* Baseline alignment */ justify-items: baseline; justify-items: first baseline; justify-items: last baseline; /* Overflow alignment (for positional alignment only) */ justify-items: safe center; justify-items: unsafe center; /* Legacy alignment */ justify-items: legacy right; justify-items: legacy left; justify-items: legacy center; /* Global values */ justify-items: inherit; justify-items: initial; justify-items: unset;
This property can take one of four different forms:
normal, auto, or stretch.baseline keyword, plus optionally one of first or last.center, start, end, flex-start, flex-end, self-start, self-end, left, or right. Plus optionally safe or unsafe.legacy keyword, followed by one of left or right.autojustify-items property of the parents box, unless the box has no parent, or is absolutely positioned, in these cases, auto represents normal.normalstart.start on replaced absolutely-positioned boxes, and as stretch on all other absolutely-positioned boxes.
stretch, except for boxes with an aspect ratio or an intrinsic sizes where it behaves like start.startendflex-startstart.flex-endend.self-startself-endcenterleftstart.rightstart.baseline
first baselinelast baseline
first baseline is start, the one for last baseline is end.stretchauto-sized items 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.safestart.unsafelegacyjustify-self: auto value, the legacy keyword is not considered by the descend, only the left, right, or center value associated to it.| Specification | Status | Comment |
|---|---|---|
| CSS Box Alignment Module Level 3 The definition of 'justify-items' in that specification. | Working Draft | Initial definition |
| Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|---|
| Basic support | ? | Yes | 45 | ? | ? | ? |
| Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
|---|---|---|---|---|---|---|---|
| Basic support | ? | ? | Yes | 45 | ? | ? | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/justify-items