1. 布局
  2. 盒装饰中断

Quick reference

属性
box-decoration-clonebox-decoration-break: clone;
box-decoration-slicebox-decoration-break: slice;

基本用法

¥Basic usage

设置盒装饰中断

¥Setting the box decoration break

使用 box-decoration-slicebox-decoration-clone 工具来控制是否应将诸如背景、边框、边框图片、框阴影、剪辑路径、边距和填充等属性渲染为就好像该元素是一个连续片段或不同的块一样。

¥Use the box-decoration-slice and box-decoration-clone utilities to control whether properties like background, border, border-image, box-shadow, clip-path, margin, and padding should be rendered as if the element were one continuous fragment, or distinct blocks.

box-decoration-slice

Hello
World

box-decoration-clone

Hello
World
<span class="box-decoration-slice bg-gradient-to-r from-indigo-600 to-pink-500 text-white px-2 ...">
  Hello<br />
  World
</span>
<span class="box-decoration-clone bg-gradient-to-r from-indigo-600 to-pink-500 text-white px-2 ...">
  Hello<br />
  World
</span>

有条件地应用

悬停、聚焦和其他状态

Tailwind 允许你使用变体修饰符在不同状态下有条件地应用工具类。例如,使用hover:box-decoration-slice 仅在 hover 时应用 box-decoration-slice 工具。

<div class="box-decoration-clone hover:box-decoration-slice">
  <!-- ... -->
</div>

有关所有可用状态修饰符的完整列表,请查看悬停、聚焦、以及其他状态 文档。

断点和媒体查询

你还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、首选减少运动等。例如,使用 md:box-decoration-slice 仅在中等屏幕尺寸及以上时应用 box-decoration-slice 工具。

<div class="box-decoration-clone md:box-decoration-slice">
  <!-- ... -->
</div>

要了解更多信息,请查看有关 响应式设计暗黑模式、以及 其他媒体查询修饰符 的文档。