1. 尺寸
  2. 最大高度

Quick reference

属性
max-h-0max-height: 0px;
max-h-pxmax-height: 1px;
max-h-0.5max-height: 0.125rem; /* 2px */
max-h-1max-height: 0.25rem; /* 4px */
max-h-1.5max-height: 0.375rem; /* 6px */
max-h-2max-height: 0.5rem; /* 8px */
max-h-2.5max-height: 0.625rem; /* 10px */
max-h-3max-height: 0.75rem; /* 12px */
max-h-3.5max-height: 0.875rem; /* 14px */
max-h-4max-height: 1rem; /* 16px */
max-h-5max-height: 1.25rem; /* 20px */
max-h-6max-height: 1.5rem; /* 24px */
max-h-7max-height: 1.75rem; /* 28px */
max-h-8max-height: 2rem; /* 32px */
max-h-9max-height: 2.25rem; /* 36px */
max-h-10max-height: 2.5rem; /* 40px */
max-h-11max-height: 2.75rem; /* 44px */
max-h-12max-height: 3rem; /* 48px */
max-h-14max-height: 3.5rem; /* 56px */
max-h-16max-height: 4rem; /* 64px */
max-h-20max-height: 5rem; /* 80px */
max-h-24max-height: 6rem; /* 96px */
max-h-28max-height: 7rem; /* 112px */
max-h-32max-height: 8rem; /* 128px */
max-h-36max-height: 9rem; /* 144px */
max-h-40max-height: 10rem; /* 160px */
max-h-44max-height: 11rem; /* 176px */
max-h-48max-height: 12rem; /* 192px */
max-h-52max-height: 13rem; /* 208px */
max-h-56max-height: 14rem; /* 224px */
max-h-60max-height: 15rem; /* 240px */
max-h-64max-height: 16rem; /* 256px */
max-h-72max-height: 18rem; /* 288px */
max-h-80max-height: 20rem; /* 320px */
max-h-96max-height: 24rem; /* 384px */
max-h-nonemax-height: none;
max-h-fullmax-height: 100%;
max-h-screenmax-height: 100vh;
max-h-svhmax-height: 100svh;
max-h-lvhmax-height: 100lvh;
max-h-dvhmax-height: 100dvh;
max-h-minmax-height: min-content;
max-h-maxmax-height: max-content;
max-h-fitmax-height: fit-content;

基本用法

¥Basic usage

设置最大高度

¥Setting the maximum height

使用 max-h-* 工具设置元素的最大高度。

¥Set the maximum height of an element using max-h-* utilities.

max-h-80
max-h-64
max-h-48
max-h-40
max-h-32
max-h-24
max-h-full
<div class="h-96 ...">
  <div class="h-full max-h-80 ...">max-h-80</div>
  <div class="h-full max-h-64 ...">max-h-64</div>
  <div class="h-full max-h-48 ...">max-h-48</div>
  <div class="h-full max-h-40 ...">max-h-40</div>
  <div class="h-full max-h-32 ...">max-h-32</div>
  <div class="h-full max-h-24 ...">max-h-24</div>
  <div class="h-full max-h-full ...">max-h-full</div>
</div>

有条件地应用

悬停、聚焦和其他状态

Tailwind 允许你使用变体修饰符在不同状态下有条件地应用工具类。例如,使用hover:max-h-screen 仅在 hover 时应用 max-h-screen 工具。

<div class="h-48 max-h-full hover:max-h-screen">
  <!-- ... -->
</div>

有关所有可用状态修饰符的完整列表,请查看悬停、聚焦、以及其他状态 文档。

断点和媒体查询

你还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、首选减少运动等。例如,使用 md:max-h-screen 仅在中等屏幕尺寸及以上时应用 max-h-screen 工具。

<div class="h-48 max-h-full md:max-h-screen">
  <!-- ... -->
</div>

要了解更多信息,请查看有关 响应式设计暗黑模式、以及 其他媒体查询修饰符 的文档。


使用自定义值

¥Using custom values

自定义主题

¥Customizing your theme

默认情况下,Tailwind 的最大高度比例是 默认间距比例 以及一些特定于高度的附加值的组合。

¥By default, Tailwind’s maximum height scale is a combination of the default spacing scale as well as some additional values specific to heights.

你可以通过编辑 tailwind.config.js 文件中的 theme.spacingtheme.extend.spacing 来自定义间距比例。

¥You can customize your spacing scale by editing theme.spacing or theme.extend.spacing in your tailwind.config.js file.

tailwind.config.js
module.exports = {
  theme: {
    extend: {
      spacing: {
        '128': '32rem',
      }
    }
  }
}

要单独自定义 max-height,请使用 tailwind.config.js 文件的 theme.minHeight 部分。

¥To customize max-height separately, use the theme.minHeight section of your tailwind.config.js file.

tailwind.config.js
module.exports = {
  theme: {
    extend: {
      maxHeight: {
        '128': '32rem',
      }
    }
  }
}

主题定制 文档中了解有关自定义默认主题的更多信息。

¥Learn more about customizing the default theme in the theme customization documentation.

任意值

¥Arbitrary values

如果你需要使用一次性的 max-height 值,而该值没有必要包含在你的主题中,请使用方括号动态生成属性,使用任意值。

<div class="max-h-[220px]">
  <!-- ... -->
</div>

任意值 文档中了解有关任意值支持的更多信息。