尺寸
同时设置元素宽度和高度的工具。
¥Basic usage
¥Fixed sizes
使用 size-px
、size-1
和 size-64
等工具同时将元素设置为固定宽度和高度。
¥Use utilities like size-px
, size-1
, and size-64
to set an element to a fixed width and height at the same time.
<div class="size-16 ...">size-16</div>
<div class="size-20 ...">size-20</div>
<div class="size-24 ...">size-24</div>
<div class="size-32 ...">size-32</div>
<div class="size-40 ...">size-40</div>
¥Percentage sizes
使用 size-full
将元素的宽度和高度设置为父容器宽度和高度的 100%。
¥Use size-full
to set an element’s width and height to be 100% of the parent container’s width and height.
<div class="h-56 p-2 ...">
<div class="size-full ...">size-full</div>
</div>
¥Resetting the size
如果你需要在特定条件下(例如在特定断点处)删除元素指定的宽度和高度,则 size-auto
工具会很有用:
¥The size-auto
utility can be useful if you need to remove an element’s assigned width and height under a specific condition, like at a particular breakpoint:
<div class="size-full md:size-auto">
<!-- ... -->
</div>
Tailwind 允许你使用变体修饰符在不同状态下有条件地应用工具类。例如,使用hover:size-full
仅在 hover 时应用 size-full
工具。
<div class="size-48 hover:size-full">
<!-- ... -->
</div>
有关所有可用状态修饰符的完整列表,请查看悬停、聚焦、以及其他状态 文档。
你还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、首选减少运动等。例如,使用 md:size-full
仅在中等屏幕尺寸及以上时应用 size-full
工具。
<div class="size-48 md:size-full">
<!-- ... -->
</div>
要了解更多信息,请查看有关 响应式设计、暗黑模式、以及 其他媒体查询修饰符 的文档。
¥Using custom values
¥Customizing your theme
默认情况下,Tailwind 的尺寸比例是 默认间距比例 以及一些特定于尺寸的附加值的组合。
¥By default, Tailwind’s size scale is a combination of the default spacing scale as well as some additional values specific to sizing.
你可以通过编辑 tailwind.config.js
文件中的 theme.spacing
或 theme.extend.spacing
来自定义间距比例。
¥You can customize your spacing scale by editing theme.spacing
or theme.extend.spacing
in your tailwind.config.js
file.
module.exports = {
theme: {
extend: {
spacing: {
'128': '32rem',
}
}
}
}
要单独自定义大小,请使用 tailwind.config.js
文件的 theme.size
部分。
¥To customize size separately, use the theme.size
section of your tailwind.config.js
file.
module.exports = {
theme: {
extend: {
size: {
'128': '32rem',
}
}
}
}
在 主题定制 文档中了解有关自定义默认主题的更多信息。
¥Learn more about customizing the default theme in the theme customization documentation.
¥Arbitrary values
如果你需要使用一次性的 size
值,而该值没有必要包含在你的主题中,请使用方括号动态生成属性,使用任意值。
<div class="size-[32rem]">
<!-- ... -->
</div>
在 任意值 文档中了解有关任意值支持的更多信息。