你正在瀏覽的是 Tailwind CSS v2. 的技術文件
Tailwind CSS 的 GitHub

Flex Wrap

Utilities for controlling how flex items wrap.

Default class reference

Class
屬性
flex-wrapflex-wrap: wrap;
flex-wrap-reverseflex-wrap: wrap-reverse;
flex-nowrapflex-wrap: nowrap;

Don't wrap

Use flex-nowrap to prevent flex items from wrapping, causing inflexible items to overflow the container if necessary:

1
2
3
<div class="flex flex-nowrap">
  <div>1</div>
  <div>2</div>
  <div>3</div>
</div>

Wrap normally

Use flex-wrap to allow flex items to wrap:

1
2
3
<div class="flex flex-wrap">
  <div>1</div>
  <div>2</div>
  <div>3</div>
</div>

Wrap reversed

Use flex-wrap-reverse to wrap flex items in the reverse direction:

1
2
3
<div class="flex flex-wrap-reverse">
  <div>1</div>
  <div>2</div>
  <div>3</div>
</div>

Responsive

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

<div class="flex flex-wrap md:flex-wrap-reverse ...">
  <!-- ... -->
</div>

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

Customizing

Variants

默認情況下, 只有 響應式 的 flex-wrap 變化模式 (variants) 會產生。

tailwind.config.jsvariants 區塊中變更 flexWrap 屬性來決定有哪些變化模式會生成。

舉個例子來說,這個設定將會生成 響應式 和 hover 的變化模式。

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
+       flexWrap: ['responsive', 'hover'],
      }
    }
  }

Disabling

如果你不打算在專案中使用 flex-wrap 功能,可以在你的設定檔裡的 corePlugins 屬性中將 flexWrap 設定為 false 來停用功能:

  // tailwind.config.js
  module.exports = {
    corePlugins: {
      // ...
+     flexWrap: false,
    }
  }