Justify Self
Utilities for controlling how an individual grid item is aligned along its inline axis.
Use to align an item based on the value of the grid’s justify-items
property:
Start
Use justify-self-start
to align a grid item to the start its inline axis:
<div class="grid justify-items-stretch ...">
<!-- ... -->
<div class="justify-self-start ...">02</div>
<!-- ... -->
<!-- ... -->
<!-- ... -->
</div>
Use justify-self-center
to align a grid item along the center its inline axis:
End
Use justify-self-end
to align a grid item to the end its inline axis:
<div class="grid justify-items-stretch ...">
<div class="justify-self-end ...">02</div>
<!-- ... -->
<!-- ... -->
<!-- ... -->
</div>
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.
<div class="justify-self-start hover:justify-self-end">
<!-- ... -->
</div>
For a complete list of all available state modifiers, check out the documentation.
You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use to apply the justify-self-end
utility at only medium screen sizes and above.