用来设置元素最小高度的功能类
<div class="h-48 ...">
<div class="h-24 min-h-full ...">
.min-h-full
</div>
</div>
要在特定的断点处控制元素的最小高度,请在任何现有的最小高度功能类前添加 {screen}:
前缀。
<div class="h-48 ...">
<div class="h-24 min-h-0 md:min-h-full ...">
<!-- ... -->
</div>
</div>
For more information about Tailwind's responsive design features, check out the Responsive Design documentation.
在您的 tailwind.config.js
文件的 theme.minHeight
部分定制 Tailwind 的默认最小高度。
// tailwind.config.js
module.exports = {
theme: {
minHeight: {
+ '0': '0',
+ '1/4': '25%',
+ '1/2': '50%',
+ '3/4': '75%',
+ 'full': '100%',
}
}
}
在 主题自定义文档 中了解更多关于自定义默认主题的信息。
默认情况下, 针对 min-height 功能类,只生成 responsive 变体。
您可以通过修改您的 tailwind.config.js
文件中的 variants
部分中的 minHeight
属性来控制为 min-height 功能生成哪些变体。
例如,这个配置也将生成 hover and focus 变体:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
+ minHeight: ['hover', 'focus'],
}
}
}
如果您不打算在您的项目中使用 min-height 功能,您可以通过在配置文件的 corePlugins
部分将 minHeight
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ minHeight: false,
}
}