Align Content

    Utilities for controlling how rows are positioned in multi-row flex and grid containers.

    Use to pack rows in a container against the start of the cross axis:

    Center

    Use content-center to pack rows in a container in the center of the cross axis:

    Align Content - 图2

    1. <div class="h-56 grid grid-cols-3 gap-4 content-center ...">
    2. <div>01</div>
    3. <div>02</div>
    4. <div>04</div>
    5. <div>05</div>
    6. </div>

    End

    Use content-end to pack rows in a container against the end of the cross axis:

    1. <div class="h-56 grid grid-cols-3 gap-4 content-end ...">
    2. <div>01</div>
    3. <div>02</div>
    4. <div>03</div>
    5. <div>04</div>
    6. <div>05</div>
    7. </div>

    Use to distribute rows in a container such that there is an equal amount of space between each line:

    Space around

    Use content-around to distribute rows in a container such that there is an equal amount of space around each line:

    Align Content - 图5

    1. <div class="h-56 grid grid-cols-3 gap-4 content-around ...">
    2. <div>01</div>
    3. <div>02</div>
    4. <div>03</div>
    5. <div>04</div>
    6. <div>05</div>

    Space evenly

    Use content-evenly to distribute rows in a container such that there is an equal amount of space around each item, but also accounting for the doubling of space you would normally see between each item when using content-around:

    1. <div class="h-56 grid grid-cols-3 gap-4 content-evenly ...">
    2. <div>01</div>
    3. <div>02</div>
    4. <div>03</div>
    5. <div>04</div>
    6. <div>05</div>

    Align Content - 图7

    Normal

    Use content-normal to pack content items in their default position as if no align-content value was set:

    1. <div class="h-56 grid grid-cols-3 gap-4 content-normal ...">
    2. <div>01</div>
    3. <div>02</div>
    4. <div>03</div>
    5. <div>04</div>
    6. <div>05</div>
    7. </div>

    Hover, focus, and other states

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

    1. <div class="grid content-start hover:content-around">
    2. <!-- ... -->

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

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