1. 边框
  2. 分割样式

Quick reference

Class
Properties
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;

基本用法

¥Basic usage

设置分割样式

¥Set the divide style

使用 divide-* 工具来控制元素之间的边框样式。

¥Use the divide-* utilities to control the border style between elements.

01
02
03
<div class="divide-y divide-dashed">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

有条件地应用

悬停、聚焦和其他状态

Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:divide-solid to only apply the divide-solid utility on hover.

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

For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.

断点和媒体查询

You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:divide-solid to apply the divide-solid utility at only medium screen sizes and above.

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

To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.