布局
用于控制应如何跨多行、多列或多页渲染元素片段的工具。
¥Basic usage
¥Setting the box decoration break
使用 box-decoration-slice
和 box-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
box-decoration-clone
<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>