布局
用于控制浏览器应如何计算元素总大小的工具。
¥Basic usage
¥Including borders and padding
使用 box-border
工具将元素的 box-sizing
设置为 border-box
,告诉浏览器在指定高度或宽度时包含元素的边框和填充。
¥Use the box-border
utility to set an element’s box-sizing
to border-box
, telling the browser to include the element’s borders and padding when you give it a height or width.
这意味着一个 100px × 100px 的元素,边框为 2px,所有边的填充为 4px,将渲染为 100px × 100px,内部内容区域为 88px × 88px。
¥This means a 100px × 100px element with a 2px border and 4px of padding on all sides will be rendered as 100px × 100px, with an internal content area of 88px × 88px.
Tailwind 使它成为我们 预检基础样式 中所有元素的默认值。
¥Tailwind makes this the default for all elements in our preflight base styles.
<div class="box-border h-32 w-32 p-4 border-4 ...">
<!-- ... -->
</div>
¥Excluding borders and padding
使用 box-content
工具将元素的 box-sizing
设置为 content-box
,告诉浏览器在元素的指定宽度或高度之上添加边框和填充。
¥Use the box-content
utility to set an element’s box-sizing
to content-box
, telling the browser to add borders and padding on top of the element’s specified width or height.
这意味着一个 100px × 100px 的元素,带有 2px 边框和 4px 的边距,实际上将渲染为 112px × 112px,内部内容区域为 100px × 100px。
¥This means a 100px × 100px element with a 2px border and 4px of padding on all sides will actually be rendered as 112px × 112px, with an internal content area of 100px × 100px.
<div class="box-content h-32 w-32 p-4 border-4 ...">
<!-- ... -->
</div>
Tailwind 允许你使用变体修饰符在不同状态下有条件地应用工具类。例如,使用hover:box-content
仅在 hover 时应用 box-content
工具。
<div class="box-border hover:box-content">
<!-- ... -->
</div>
有关所有可用状态修饰符的完整列表,请查看悬停、聚焦、以及其他状态 文档。
你还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、首选减少运动等。例如,使用 md:box-content
仅在中等屏幕尺寸及以上时应用 box-content
工具。
<div class="box-border md:box-content">
<!-- ... -->
</div>