Tailwind CSS on GitHub

最小高度

用来设置元素最小高度的功能类

Default class reference

Class
Properties
min-h-0min-height: 0px;
min-h-fullmin-height: 100%;
min-h-screenmin-height: 100vh;

使用方法

使用 min-h-0min-h-fullmin-h-screen 功能类设置元素的最小宽度。

.min-h-full
<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.


定制

Min-height scale

在您的 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,
    }
  }