尺寸
用于设置元素宽度的实用程序。
使用 w-{number}
或 w-px
将元素设置为固定宽度。
<div class="w-96 ...">w-96</div>
<div class="w-80 ...">w-80</div>
<div class="w-64 ...">w-64</div>
<div class="w-48 ...">w-48</div>
<div class="w-40 ...">w-40</div>
<div class="w-32 ...">w-32</div>
<div class="w-24 ...">w-24</div>
使用 w-{fraction}
或 w-full
将元素设置为基于百分比的宽度。
<div class="flex ...">
<div class="w-1/2 ... ">w-1/2</div>
<div class="w-1/2 ... ">w-1/2</div>
</div>
<div class="flex ...">
<div class="w-2/5 ...">w-2/5</div>
<div class="w-3/5 ...">w-3/5</div>
</div>
<div class="flex ...">
<div class="w-1/3 ...">w-1/3</div>
<div class="w-2/3 ...">w-2/3</div>
</div>
<div class="flex ...">
<div class="w-1/4 ...">w-1/4</div>
<div class="w-3/4 ...">w-3/4</div>
</div>
<div class="flex ...">
<div class="w-1/5 ...">w-1/5</div>
<div class="w-4/5 ...">w-4/5</div>
</div>
<div class="flex ...">
<div class="w-1/6 ...">w-1/6</div>
<div class="w-5/6 ...">w-5/6</div>
</div>
<div class="w-full ...">w-full</div>
使用 w-screen
使元素跨越视窗的整个宽度。
<div class="w-screen">
<!-- ... -->
</div>
w-auto
实用程序在您需要在特定条件下(例如在特定断点处)移除元素的指定宽度时非常有用。
<div class="w-full md:w-auto">
<!-- ... -->
</div>
Tailwind 允许您使用变体修饰符在不同状态下有条件地应用实用程序类。例如,使用 hover:w-full
仅在悬停时应用 w-full
实用程序。
<div class="w-1/2 hover:w-full">
<!-- ... -->
</div>
有关所有可用状态修饰符的完整列表,请查看 悬停、聚焦和其它状态 文档。
您还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗模式、首选减少运动等。例如,使用 md:w-full
仅在中等屏幕尺寸及以上时应用 w-full
实用程序。
<div class="w-1/2 md:w-full">
<!-- ... -->
</div>
要了解更多信息,请查看有关 响应式设计、暗模式 和 其它媒体查询修饰符 的文档。
默认情况下,Tailwind 的宽度比例尺是 默认间距比例尺 和一些特定于宽度的附加值的组合。
您可以通过编辑 tailwind.config.js
文件中的 theme.spacing
或 theme.extend.spacing
来自定义间距比例尺。
module.exports = {
theme: {
extend: {
spacing: {
'128': '32rem',
}
}
}
}
要单独自定义宽度,请使用 tailwind.config.js
文件的 theme.width
部分。
module.exports = {
theme: {
extend: {
width: {
'128': '32rem',
}
}
}
}
在 主题自定义 文档中了解有关自定义默认主题的更多信息。
如果您需要使用一个不适合包含在主题中的 width
值,请使用方括号使用任何任意值动态生成属性。
<div class="w-[32rem]">
<!-- ... -->
</div>
在 任意值 文档中了解有关任意值支持的更多信息。