Class reference

Align Items - 图1

Stretch Default

Use .items-stretch to stretch items to fill the flex container’s cross axis:

Align Items - 图2

Start

Use .items-start to align items to the start of the flex container’s cross axis:

Align Items - 图3

Center

Use .items-center to align items along the center of the flex container’s cross axis:

Align Items - 图4

End

Use .items-end to align items to the end of the flex container’s cross axis:

Align Items - 图5

Baseline

Use .items-baseline to align items along the flex container’s cross axis such that all of their baselines align:

Align Items - 图6

Responsive

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

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

Align Items - 图7

all

Align Items - 图8

sm

Align Items - 图9

md

Align Items - 图10

lg

Align Items - 图11

xl

Align Items - 图12

Customizing

Responsive and State Variants

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

You can control which variants are generated for the align-items 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 Items - 图13

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

Disabling

If you don’t plan to use the align-items 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 Items - 图14

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