Flexbox & Grid

Justify Self

Utilities for controlling how an individual grid item is aligned along its inline axis.

Quick reference

Class Properties
justify-self-auto justify-self: auto;
justify-self-start justify-self: start;
justify-self-end justify-self: end;
justify-self-center justify-self: center;
justify-self-stretch justify-self: stretch;

Basic usage

Auto

Use justify-self-auto to align an item based on the value of the grid’s justify-items property:

Justify Self - 图1


1. <div class="grid justify-items-stretch ...">
2. <!-- ... -->
3. <div class="justify-self-auto ...">02</div>
4. <!-- ... -->
5. <!-- ... -->
6. <!-- ... -->
7. <!-- ... -->
8. </div>

Start

Use justify-self-start to align a grid item to the start its inline axis:

Justify Self - 图2


1. <div class="grid justify-items-stretch ...">
2. <!-- ... -->
3. <div class="justify-self-start ...">02</div>
4. <!-- ... -->
5. <!-- ... -->
6. <!-- ... -->
7. <!-- ... -->
8. </div>

Center

Use justify-self-center to align a grid item along the center its inline axis:

Justify Self - 图3


1. <div class="grid justify-items-stretch ...">
2. <!-- ... -->
3. <div class="justify-self-center ...">02</div>
4. <!-- ... -->
5. <!-- ... -->
6. <!-- ... -->
7. <!-- ... -->
8. </div>

End

Use justify-self-end to align a grid item to the end its inline axis:

Justify Self - 图4


1. <div class="grid justify-items-stretch ...">
2. <!-- ... -->
3. <div class="justify-self-end ...">02</div>
4. <!-- ... -->
5. <!-- ... -->
6. <!-- ... -->
7. <!-- ... -->
8. </div>

Stretch

Use justify-self-stretch to stretch a grid item to fill the grid area on its inline axis:

Justify Self - 图5


1. <div class="grid justify-items-start ...">
2. <!-- ... -->
3. <div class="justify-self-stretch ...">02</div>
4. <!-- ... -->
5. <!-- ... -->
6. <!-- ... -->
7. <!-- ... -->
8. </div>


Applying conditionally

Hover, focus, and other states

Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:justify-self-end to only apply the justify-self-end utility on hover.


1. <div class="justify-self-start hover:justify-self-end">
2. <!-- ... -->
3. </div>

For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.

Breakpoints and media queries

You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:justify-self-end to apply the justify-self-end utility at only medium screen sizes and above.


1. <div class="justify-self-start md:justify-self-end">
2. <!-- ... -->
3. </div>

To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.