Justify items

Utilities for controlling how grid items are aligned along their inline axis.


Class reference

ClassProperties
justify-items-autojustify-items: flex-auto;
justify-items-startjustify-items: flex-start;
justify-items-centerjustify-items: center;
justify-items-endjustify-items: flex-end;
justify-items-stretchjustify-items: stretch;

Auto

Use justify-items-auto to justify grid items automatically on their inline axis:

1
2
3
4
5
6
<div class="grid justify-items-auto ...">
<div>1</div>
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
</div>

Start

Use justify-items-start to justify grid items against the start of their inline axis:

1
2
3
4
5
6
<div class="grid justify-items-start ...">
<div>1</div>
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
</div>

Center

Use justify-items-center to justify grid items along their inline axis:

1
2
3
4
5
6
<div class="grid justify-items-center ...">
<div>1</div>
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
</div>

End

Use justify-items-end to justify grid items against the end of their inline axis:

1
2
3
4
5
6
<div class="grid justify-items-end ...">
<div>1</div>
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
</div>

Stretch

Use justify-items-stretch to stretch items along their inline axis:

1
2
3
4
5
6
<div class="grid justify-items-stretch ...">
<div>1</div>
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
</div>

Responsive

To justify flex items at a specific breakpoint, add a {screen}: prefix to any existing utility class. For example, use md:justify-items-center to apply the justify-items-center utility at only medium screen sizes and above.

<div class="justify-items-start md:justify-items-center">
<!-- ... -->
</div>

For more information about Elements’ responsive design features, check out the Responsive Design documentation.