Flex Direction

Utilities for controlling the direction of flex items.

Class reference

Class
Properties
.flex-rowflex-direction: row;
.flex-row-reverseflex-direction: row-reverse;
.flex-colflex-direction: column;
.flex-col-reverseflex-direction: column-reverse;

Row

Use .flex-row to position flex items horizontally in the same direction as text:

Flex Direction - 图1

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

Row reversed

Use .flex-row-reverse to position flex items horizontally in the opposite direction:

Flex Direction - 图2

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

Column

Use .flex-col to position flex items vertically:

Flex Direction - 图3

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

Column reversed

Use .flex-col-reverse to position flex items vertically in the opposite direction:

Flex Direction - 图4

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

Responsive

To apply a flex direction utility only at a specific breakpoint, add a {screen}: prefix to the existing class name. For example, adding the class md:flex-row to an element would apply the flex-row utility at medium screen sizes and above.

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

Flex Direction - 图5

all

Flex Direction - 图6

sm

Flex Direction - 图7

md

Flex Direction - 图8

lg

Flex Direction - 图9

xl

  1. <div class="flex-row sm:flex-col md:flex-row-reverse lg:flex-col-reverse xl:flex-row ...">
  2. <!-- ... -->
  3. </div>

1

2

3

Customizing

Responsive and pseudo-class variants

By default, only responsive variants are generated for flex-direction utilities.

You can control which variants are generated for the flex-direction utilities by modifying the flexDirection 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. - flexDirection: ['responsive'],
  6. + flexDirection: ['responsive', 'hover', 'focus'],
  7. }
  8. }

Disabling

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

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

← Z-Index   Flex Wrap →