布局
用于控制列或页面在元素之前应如何中断的工具。
¥Basic usage
¥Setting the break-before behavior
使用 break-before-*
工具来控制列或分页符在元素之前的行为方式。例如,使用 break-before-column
工具强制在元素前分栏。
¥Use the break-before-*
utilities to control how a column or page break should behave before an element. For example, use the break-before-column
utility to force a column break before an element.
<div class="columns-2">
<p>Well, let me tell you something, ...</p>
<p class="break-before-column">Sure, go ahead, laugh...</p>
<p>Maybe we can live without...</p>
<p>Look. If you think this is...</p>
</div>
Tailwind 允许你使用变体修饰符在不同状态下有条件地应用工具类。例如,使用hover:break-before-column
仅在 hover 时应用 break-before-column
工具。
<div class="hover:break-before-column">
<!-- ... -->
</div>
有关所有可用状态修饰符的完整列表,请查看悬停、聚焦、以及其他状态 文档。
你还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、首选减少运动等。例如,使用 md:break-before-column
仅在中等屏幕尺寸及以上时应用 break-before-column
工具。
<div class="md:break-before-column">
<!-- ... -->
</div>