Tailwind CSS on GitHub

最大高度

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

Default class reference

Class
Properties
max-h-0max-height: 0px;
max-h-0.5max-height: 0.125rem;
max-h-1max-height: 0.25rem;
max-h-1.5max-height: 0.375rem;
max-h-2max-height: 0.5rem;
max-h-2.5max-height: 0.625rem;
max-h-3max-height: 0.75rem;
max-h-3.5max-height: 0.875rem;
max-h-4max-height: 1rem;
max-h-5max-height: 1.25rem;
max-h-6max-height: 1.5rem;
max-h-7max-height: 1.75rem;
max-h-8max-height: 2rem;
max-h-9max-height: 2.25rem;
max-h-10max-height: 2.5rem;
max-h-11max-height: 2.75rem;
max-h-12max-height: 3rem;
max-h-14max-height: 3.5rem;
max-h-16max-height: 4rem;
max-h-20max-height: 5rem;
max-h-24max-height: 6rem;
max-h-28max-height: 7rem;
max-h-32max-height: 8rem;
max-h-36max-height: 9rem;
max-h-40max-height: 10rem;
max-h-44max-height: 11rem;
max-h-48max-height: 12rem;
max-h-52max-height: 13rem;
max-h-56max-height: 14rem;
max-h-60max-height: 15rem;
max-h-64max-height: 16rem;
max-h-72max-height: 18rem;
max-h-80max-height: 20rem;
max-h-96max-height: 24rem;
max-h-pxmax-height: 1px;
max-h-fullmax-height: 100%;
max-h-screenmax-height: 100vh;

使用方法

使用 max-h-fullmax-h-screen 功能类设置元素的最大高度。

.max-h-full
<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 的响应式设计功能的更多信息,请查看 响应式设计 文档。


定制

Max-height scale

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