Tailwind CSS 最小宽度
2022-08-08 10:04 更新
最小宽度
用来设置元素最小宽度的功能类
Class
|
Properties
|
---|---|
min-w-0 | min-width: 0px; |
min-w-full | min-width: 100%; |
min-w-min | min-width: min-content; |
min-w-max | min-width: max-content; |
使用方法
使用 min-w-0
或 min-w-full
功能类设置元素的最小宽度。
<div class="w-24 min-w-full ...">
min-w-full
</div>
响应式
要在特定的断点处控制元素的最小宽度,请在任何现有的最小宽度功能类前添加 {screen}:
前缀。
<div class="w-24 min-w-full md:min-w-0 ...">
<!-- ... -->
</div>
关于 Tailwind 的响应式设计功能的更多信息,请查看 响应式设计 文档。
自定义
Min-width scale
在您的 tailwind.config.js
文件的 theme.minWidth
部分定制 Tailwind 的默认最小宽度。
// tailwind.config.js
module.exports = {
theme: {
minWidth: {
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
}
}
}
在 主题自定义文档 中了解更多关于自定义默认主题的信息。
变体
默认情况下, 针对 min-width 功能类,只生成 responsive 变体。
您可以通过修改您的 tailwind.config.js
文件中的 variants
部分中的 minWidth
属性来控制为 min-width 功能生成哪些变体。
例如,这个配置也将生成 hover and focus 变体:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
minWidth: ['hover', 'focus'],
}
}
}
禁用
如果您不打算在您的项目中使用 min-width 功能,您可以通过在配置文件的 corePlugins
部分将 minWidth
属性设置为 false
来完全禁用它们:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
minWidth: false,
}
}
以上内容是否对您有帮助:
更多建议: