Justify Items
v1.8.0+
Utilities for controlling how grid items are aligned along their inline axis.
Auto
Use to justify grid items automatically on their inline axis:
Use justify-items-start
to justify grid items against the start of their inline axis:
<div class="grid grid-cols-3 gap-4 justify-items-start h-48">
<div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">2</div>
<div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">3</div>
<div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">4</div>
<div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">5</div>
<div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">6</div>
</div>
End
Use justify-items-end
to justify grid items against the end of their inline axis:
Use justify-items-center
to justify grid items along their inline axis:
<div class="grid grid-cols-3 gap-4 justify-items-center h-48">
<div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">2</div>
<div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">3</div>
<div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">4</div>
<div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">6</div>
</div>
Stretch
Use justify-items-stretch
to stretch items along their inline axis:
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">
<!-- ... -->
For more information about Tailwind’s responsive design features, check out the documentation.
Customizing
By default, only responsive variants are generated for justify-items utilities.
You can control which variants are generated for the justify-items utilities by modifying the justifyItems
property in the variants
section of your tailwind.config.js
file.
For example, this config will also generate hover and focus variants:
Disabling
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ justifyItems: false,
}