用来设置元素宽度的功能类
使用 w-auto
让浏览器计算并选择元素的宽度。您可以用它来取消设置的一个特定的宽度。
<div class="w-24 md:w-auto ..."></div>
使用 w-screen
使一个元素跨越整个视口的宽度。
<div class=" h-12 w-screen"></div>
使用 w-{number}
或 w-px
将元素设置为固定宽度。
w-8
w-12
w-16
w-24
<div>
<div class="w-8 ..."></div>
<div class="w-12 ..."></div>
<div class="w-16 ..."></div>
<div class="w-24 ..."></div>
</div>
<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>
要在特定的断点处控制元素的宽度,可以在任何现有的宽度功能类前添加 {screen}:
前缀。例如,将 md:w-full
类添加到一个元素中,就可以在中等及以上尺寸屏幕的情况下应用用 w-full
功能类。
<div class="w-1/2 md:w-full ...">
<!-- ... -->
</div>
关于 Tailwind 的响应式设计功能的更多信息,请查看 响应式设计 文档。
默认情况下,Tailwind 的宽度比例是 默认间距比例 以及一些特定于宽度的附加值的组合。
您可以在您的 tailwind.config.js
文件中的 theme.spacing
或 theme.extend.spacing
部分一次性自定义 padding、margin、width 和 height 的间距比例。
// tailwind.config.js
module.exports = {
theme: {
extend: {
+ spacing: {
+ '72': '18rem',
+ '84': '21rem',
+ '96': '24rem',
+ }
}
}
}
要单独定制宽度,请使用您的 tailwind.config.js
文件中的 theme.width
部分。
// tailwind.config.js
module.exports = {
theme: {
extend: {
+ width: {
+ '1/7': '14.2857143%',
+ '2/7': '28.5714286%',
+ '3/7': '42.8571429%',
+ '4/7': '57.1428571%',
+ '5/7': '71.4285714%',
+ '6/7': '85.7142857%',
+ }
}
}
}
在 主题自定义文档 中了解更多关于自定义默认主题的信息。
默认情况下, 针对 width 功能类,只生成 responsive 变体。
您可以通过修改您的 tailwind.config.js
文件中的 variants
部分中的 width
属性来控制为 width 功能生成哪些变体。
例如,这个配置也将生成 hover and focus 变体:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
+ width: ['hover', 'focus'],
}
}
}
如果您不打算在您的项目中使用 width 功能,您可以通过在配置文件的 corePlugins
部分将 width
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ width: false,
}
}