用来设置元素最大高度的功能类
<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
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ maxHeight: false,
}
}