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:

    1. <div class="grid grid-cols-3 gap-4 justify-items-start h-48">
    2. <div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">2</div>
    3. <div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">3</div>
    4. <div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">4</div>
    5. <div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">5</div>
    6. <div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">6</div>
    7. </div>

    End

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

    Justify Items - 图3

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

    1. <div class="grid grid-cols-3 gap-4 justify-items-center h-48">
    2. <div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">2</div>
    3. <div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">3</div>
    4. <div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">4</div>
    5. <div class="text-gray-700 bg-gray-400 flex justify-center items-center px-4 py-2">6</div>
    6. </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.

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

    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

    1. // tailwind.config.js
    2. module.exports = {
    3. corePlugins: {
    4. // ...
    5. + justifyItems: false,
    6. }

    ← Justify Content