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

Divide Style

Utilities for controlling the border style between elements.

Default class reference

Class
屬性
divide-solid > * + *border-style: solid;
divide-dashed > * + *border-style: dashed;
divide-dotted > * + *border-style: dotted;
divide-double > * + *border-style: double;
divide-none > * + *border-style: none;

Usage

Control the border style between elements using the divide-{style} utilities.

1
2
3
<div class="divide-y-4 divide-yellow-600 divide-dashed">
  <div>1</div>
  <div>2</div>
  <div>3</div>
</div>

Responsive

To control the border style between elements at a specific breakpoint, add a {screen}: prefix to any existing divide style utility. For example, use md:divide-dashed to apply the divide-dashed utility at only medium screen sizes and above.

<div class="divide-y-2 divide-dashed md:divide-solid">
  <!-- ... -->
</div>

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

Customizing

Variants

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

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

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

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

Disabling

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

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