The CSS justify-content
property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.
The interactive example below demonstrates some of the values using Grid Layout.
Try it
The alignment is done after the lengths and auto margins are applied, meaning that, if in a Flexbox layout there is at least one flexible element, with flex-grow
different from 0
, it will have no effect as there won't be any available space.
Syntax
justify-content: center;
justify-content: start;
justify-content: end;
justify-content: flex-start;
justify-content: flex-end;
justify-content: left;
justify-content: right;
justify-content: normal;
justify-content: space-between;
justify-content: space-around;
justify-content: space-evenly;
justify-content: stretch;
justify-content: safe center;
justify-content: unsafe center;
justify-content: inherit;
justify-content: initial;
justify-content: revert;
justify-content: revert-layer;
justify-content: unset;
Values
-
start
-
The items are packed flush to each other toward the start edge of the alignment container in the main axis.
-
end
-
The items are packed flush to each other toward the end edge of the alignment container in the main axis.
-
flex-start
-
The items are packed flush to each other toward the edge of the alignment container depending on the flex container's main-start side. This only applies to flex layout items. For items that are not children of a flex container, this value is treated like start
.
-
flex-end
-
The items are packed flush to each other toward the edge of the alignment container depending on the flex container's main-end side. This only applies to flex layout items. For items that are not children of a flex container, this value is treated like end
.
-
center
-
The items are packed flush to each other toward the center of the alignment container along the main axis.
-
left
-
The items are packed flush with each other toward the left edge of the alignment container. When the property's horizontal axis is not parallel with the inline axis, such as when flex-direction: column;
is set, this value behaves like start
.
-
right
-
The items are packed flush to each other toward the right edge of the alignment container in the appropriate axis. If the property's axis is not parallel with the inline axis (in a grid container) or the main-axis (in a flexbox container), this value behaves like start
.
-
normal
-
Behaves as stretch
, except in the case of multi-column containers with a non-auto
column-width
, in which case the columns take their specified column-width
rather than stretching to fill the container. As stretch
behaves as start
in flex containers, normal
also behaves as start
.
-
space-between
-
The items are evenly distributed within the alignment container along the main axis. The spacing between each pair of adjacent items is the same. The first item is flush with the main-start edge, and the last item is flush with the main-end edge.
-
space-around
-
The items are evenly distributed within the alignment container along the main axis. The spacing between each pair of adjacent items is the same. The empty space before the first and after the last item equals half of the space between each pair of adjacent items.
-
space-evenly
-
The items are evenly distributed within the alignment container along the main axis. The spacing between each pair of adjacent items, the main-start edge and the first item, and the main-end edge and the last item, are all exactly the same.
-
stretch
-
If the combined size of the items along the main axis is less than the size of the alignment container, any auto
-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 along the main axis.
Note: While stretch
is supported by flexible boxes (flexbox), when applied on a flexbox, as stretching is controlled by flex
, stretch
behaves as start
.
-
safe
-
If the item overflows the alignment container, then the item is aligned as if the alignment mode is start
. The desired alignment will not be implemented.
-
unsafe
-
Even if the item overflows the alignment container, the desired alignment will be implemented. Unlike safe
, which will ignore the desired alignment in favor of preventing overflow.
justify-content =
normal |
<content-distribution> |
<overflow-position>? [ <content-position> | left | right ]
<content-distribution> =
space-between |
space-around |
space-evenly |
stretch
<overflow-position> =
unsafe |
safe
<content-position> =
center |
start |
end |
flex-start |
flex-end
Setting flex item distribution
CSS
#container {
display: flex;
justify-content: space-between;
}
#container > div {
width: 100px;
height: 100px;
background: linear-gradient(-45deg, #788cff, #b4c8ff);
}
Result
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
justify-content |
2921 |
1212 |
4920 |
11 |
12.1 |
97 |
4.44.4 |
2925 |
4920 |
12.1 |
97 |
2.01.5 |
flex_context |
52
21–52Older versions of the specification treat absolute positioned children as though they are a 0 by 0 flex item. Later specification versions take the children out of the flow and set their positions based on align and justify properties. Chrome implements the new behavior beginning with Chrome 52.
|
12 |
20Before Firefox 27, Firefox supported only single-line flexbox.
|
11 |
12.1 |
7 |
52
4.4–52Older versions of the specification treat absolute positioned children as though they are a 0 by 0 flex item. Later specification versions take the children out of the flow and set their positions based on align and justify properties. Chrome implements the new behavior beginning with Chrome 52.
|
52
25–52Older versions of the specification treat absolute positioned children as though they are a 0 by 0 flex item. Later specification versions take the children out of the flow and set their positions based on align and justify properties. Chrome implements the new behavior beginning with Chrome 52.
|
20Before Firefox 27, Firefox supported only single-line flexbox.
|
12.1 |
7 |
6.0
1.5–6.0Older versions of the specification treat absolute positioned children as though they are a 0 by 0 flex item. Later specification versions take the children out of the flow and set their positions based on align and justify properties. Samsung Internet implements the new behavior beginning with Samsung Internet 6.0.
|
grid_context |
57 |
16 |
52 |
No |
44 |
10.1 |
57 |
52 |
52 |
43 |
10.3 |
6.2 |