Tailwind CSS 最大高度
2022-08-08 10:03 更新
最大高度
用来设置元素最大高度的功能类
Class
|
Properties
|
---|---|
max-h-0 | max-height: 0px; |
max-h-px | max-height: 1px; |
max-h-0.5 | max-height: 0.125rem; |
max-h-1 | max-height: 0.25rem; |
max-h-1.5 | max-height: 0.375rem; |
max-h-2 | max-height: 0.5rem; |
max-h-2.5 | max-height: 0.625rem; |
max-h-3 | max-height: 0.75rem; |
max-h-3.5 | max-height: 0.875rem; |
max-h-4 | max-height: 1rem; |
max-h-5 | max-height: 1.25rem; |
max-h-6 | max-height: 1.5rem; |
max-h-7 | max-height: 1.75rem; |
max-h-8 | max-height: 2rem; |
max-h-9 | max-height: 2.25rem; |
max-h-10 | max-height: 2.5rem; |
max-h-11 | max-height: 2.75rem; |
max-h-12 | max-height: 3rem; |
max-h-14 | max-height: 3.5rem; |
max-h-16 | max-height: 4rem; |
max-h-20 | max-height: 5rem; |
max-h-24 | max-height: 6rem; |
max-h-28 | max-height: 7rem; |
max-h-32 | max-height: 8rem; |
max-h-36 | max-height: 9rem; |
max-h-40 | max-height: 10rem; |
max-h-44 | max-height: 11rem; |
max-h-48 | max-height: 12rem; |
max-h-52 | max-height: 13rem; |
max-h-56 | max-height: 14rem; |
max-h-60 | max-height: 15rem; |
max-h-64 | max-height: 16rem; |
max-h-72 | max-height: 18rem; |
max-h-80 | max-height: 20rem; |
max-h-96 | max-height: 24rem; |
max-h-full | max-height: 100%; |
max-h-screen | max-height: 100vh; |
使用方法
使用 max-h-full
或 max-h-screen
功能类设置元素的最大高度。
<div class="h-24 ...">
<div class="h-48 max-h-full ...">
.max-h-full
</div>
</div>
响应式
要在特定的断点处控制元素的最大高度,请在任何现有的最大高度功能类前添加 {screen}:
前缀。
<div class="h-48 max-h-full md:max-h-screen ...">
<span>Target</span>
</div>
关于 Tailwind 的响应式设计功能的更多信息,请查看 响应式设计 文档。
自定义
最大高度比例
在您的 tailwind.config.js
文件的 theme.maxHeight
部分定制 Tailwind 的默认最大高度。
// tailwind.config.js
module.exports = {
theme: {
maxHeight: {
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
}
}
}
在 主题自定义文档 中了解更多关于自定义默认主题的信息。
变体
默认情况下, 针对 max-height 功能类,只生成 responsive 变体。
您可以通过修改您的 tailwind.config.js
文件中的 variants
部分中的 maxHeight
属性来控制为 max-height 功能生成哪些变体。
例如,这个配置也将生成 hover and focus 变体:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
maxHeight: ['hover', 'focus'],
}
}
}
禁用
如果您不打算在您的项目中使用 max-height 功能,您可以通过在配置文件的 corePlugins
部分将 maxHeight
属性设置为 false
来完全禁用它们:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
maxHeight: false,
}
}
以上内容是否对您有帮助:
更多建议: