Justify content
The justify content class sets the justify-content property. It controls how extra space is distributed between items in a flex or grid container along the main axis.
flex-direction property sets the main and cross axis. The effects of justify-content change based on the container's direction.| CSS Shortcut class | Applied style |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
Examples
Around
justify-content-around
Columns are evenly spaced along the main axis with equal space around each line. This results in half-sized gaps at the start and end of the container.
In row layouts, spacing is horizontal with half gaps on left and right.
In column layouts, spacing is vertical with half gaps on top and bottom.
1
2
3
<div class="d-flex justify-content-around">
<p>1</p>
<p>2</p>
<p>3</p>
</div>
Between
justify-content-between
Columns are evenly space along the main axis with equal space between each line. There’s no space at the start or end of the container.
In row layouts, spacing is horizontal between items only.
In column layouts, spacing is vertical between items only.
1
2
3
<div class="d-flex justify-content-between">
<p>1</p>
<p>2</p>
<p>3</p>
</div>
Evenly
justify-content-evenly
Columns are evenly spaced along the main axis with equal space between all lines and the container edges, including the start and end.
In row layouts, spacing is equal horizontally between and around items.
In column layouts, spacing is equal vertically between and around items.
1
2
3
<div class="d-flex justify-content-evenly">
<p>1</p>
<p>2</p>
<p>3</p>
</div>
Centre
justify-content-center
Rows are grouped together and centred along the main axis within the container, with equal space above and below the entire group.
In row layouts, items are centred horizontally.
In column layouts, items are centred vertically.
1
2
3
<div class="d-flex justify-content-center">
<p>1</p>
<p>2</p>
<p>3</p>
</div>
Start
justify-content-start
Columns are grouped together at the start of the main axis within the container, leaving any extra space at the end of the container.
In row layouts, items align to the left.
In column layouts, items align to the top.
1
2
3
<div class="d-flex justify-content-start">
<p>1</p>
<p>2</p>
<p>3</p>
</div>
End
justify-content-end
Columns are grouped together at the end of the main axis within the container, leaving any extra space at the beginning of the container.
In row layouts, items align to the right.
In column layouts, items align to the bottom.
1
2
3
<div class="d-flex justify-content-end">
<p>1</p>
<p>2</p>
<p>3</p>
</div>
xs:> 480pxsm:> 640pxmd:> 768pxlg:> 1024pxxl:> 1280px
<div class="xs:justify-content-center ...">
...
</div>