Align Items

Utilities for controlling how flex and grid items are positioned along a container’s cross axis.

Class reference

Class
Properties
.items-startalign-items: flex-start;
.items-endalign-items: flex-end;
.items-centeralign-items: center;
.items-baselinealign-items: baseline;
.items-stretchalign-items: stretch;

Stretch

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

Align Items - 图1

  1. <div class="flex items-stretch bg-gray-200 h-24">
  2. <div class="flex-1 text-gray-700 text-center bg-gray-400 px-4 py-2 m-2">1</div>
  3. <div class="flex-1 text-gray-700 text-center bg-gray-400 px-4 py-2 m-2">2</div>
  4. <div class="flex-1 text-gray-700 text-center bg-gray-400 px-4 py-2 m-2">3</div>
  5. </div>

Start

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

Align Items - 图2

  1. <div class="flex items-start bg-gray-200 h-24">
  2. <div class="flex-1 text-gray-700 text-center bg-gray-400 px-4 py-2 m-2">1</div>
  3. <div class="flex-1 text-gray-700 text-center bg-gray-400 px-4 py-2 m-2">2</div>
  4. <div class="flex-1 text-gray-700 text-center bg-gray-400 px-4 py-2 m-2">3</div>
  5. </div>

Center

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

Align Items - 图3

  1. <div class="flex items-center bg-gray-200 h-24">
  2. <div class="flex-1 text-gray-700 text-center bg-gray-400 px-4 py-2 m-2">1</div>
  3. <div class="flex-1 text-gray-700 text-center bg-gray-400 px-4 py-2 m-2">2</div>
  4. <div class="flex-1 text-gray-700 text-center bg-gray-400 px-4 py-2 m-2">3</div>
  5. </div>

End

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

Align Items - 图4

  1. <div class="flex items-end bg-gray-200 h-24">
  2. <div class="flex-1 text-gray-700 text-center bg-gray-400 px-4 py-2 m-2">1</div>
  3. <div class="flex-1 text-gray-700 text-center bg-gray-400 px-4 py-2 m-2">2</div>
  4. <div class="flex-1 text-gray-700 text-center bg-gray-400 px-4 py-2 m-2">3</div>
  5. </div>

Baseline

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

Align Items - 图5

  1. <div class="flex items-baseline bg-gray-200 h-24">
  2. <div class="flex-1 text-gray-700 text-center bg-gray-400 px-4 py-2 m-2 text-base">1</div>
  3. <div class="flex-1 text-gray-700 text-center bg-gray-400 px-4 py-2 m-2 text-2xl">2</div>
  4. <div class="flex-1 text-gray-700 text-center bg-gray-400 px-4 py-2 m-2 text-lg">3</div>
  5. </div>

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 - 图6

all

Align Items - 图7

sm

Align Items - 图8

md

Align Items - 图9

lg

Align Items - 图10

xl

  1. <div class="items-stretch sm:items-start md:items-center lg:items-end xl:items-baseline ...">
  2. <!-- ... -->
  3. </div>

1

2

3

Customizing

Responsive and pseudo-class 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 alignItems property in the variants section of your tailwind.config.js file.

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

  1. // tailwind.config.js
  2. module.exports = {
  3. variants: {
  4. // ...
  5. - alignItems: ['responsive'],
  6. + alignItems: ['responsive', 'hover', 'focus'],
  7. }
  8. }

Disabling

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

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

← Align Content   Align Self →