Class reference

Align Content - 图1

Start Default

Use .content-start to pack lines in a flex container against the start of the cross axis:

Align Content - 图2

Center

Use .content-center to pack lines in a flex container in the center of the cross axis:

Align Content - 图3

End

Use .content-end to pack lines in a flex container against the end of the cross axis:

Align Content - 图4

Space between

Use .content-between to distribute lines in a flex container such that there is an equal amount of space between each line:

Align Content - 图5

Space around

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

Align Content - 图6

Responsive

To control the alignment of flex content at a specific breakpoint, add a {screen}: prefix to any existing utility class. For example, use md:content-around to apply the content-around utility at only medium screen sizes and above.

For more information about Tailwind’s responsive design features, check out the Responsive Design documentation.

Align Content - 图7

all

Align Content - 图8

sm

Align Content - 图9

md

Align Content - 图10

lg

Align Content - 图11

xl

Align Content - 图12

Customizing

Responsive and State Variants

By default, only responsive variants are generated for align-content utilities.

You can control which variants are generated for the align-content utilities by modifying the flexbox property in the modules section of your Tailwind config file.

For example, this config will also generate hover and focus variants:

Align Content - 图13

Note that modifying the flexbox property will affect which variants are generated for all Flexbox utilities, not just the align-content utilities.

Disabling

If you don’t plan to use the align-content utilities in your project, you can disable them entirely by setting the flexbox property to false in the modules section of your config file:

Align Content - 图14

Note that modifying the flexbox property will affect which variants are generated for all Flexbox utilities, not just the align-content utilities.