Quick reference

Class
Properties
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

최대 높이 설정

max-h-* 유틸리티를 사용해 엘리먼트의 최대 높이를 설정할 수 있습니다.

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>

Applying conditionally

호버, 포커스 및 기타 상태

Tailwind는 상태에 따라 유틸리티 클래스를 조건부로 적용할 수 있게 해줍니다. 예를 들어, hover:max-h-screen 를 사용하면 max-h-screen 유틸리티를 hover 상태에서만 적용할 수 있습니다.

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

사용 가능한 모든 상태 수정자 목록은 호버, 포커스, & 기타 상태 문서를 참고하세요.

브레이크포인트와 미디어 쿼리

여러분은 반응형 브레이크포인트, 다크 모드, prefers-reduced-motion 등과 같은 미디어 쿼리를 타겟팅하기 위해 변형 수식어를 사용할 수 있습니다. 예를 들어, md:max-h-screen를 사용하면 중간 화면 크기 이상에서만 max-h-screen 유틸리티를 적용할 수 있습니다.

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

더 자세히 알아보려면 반응형 디자인, 다크 모드, 그리고 다른 미디어 쿼리 수식어에 대한 문서를 확인하세요.


Using custom values

테마 커스터마이징

기본적으로 Tailwind의 최대 높이 스케일은 기본 간격 스케일과 높이에 특화된 몇 가지 추가 값의 조합으로 이루어져 있습니다.

tailwind.config.js 파일에서 theme.spacing 또는 theme.extend.spacing을 수정하여 간격 스케일을 커스터마이징할 수 있습니다.

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

max-height를 별도로 커스터마이징하려면 tailwind.config.js 파일의 theme.maxHeight 섹션을 사용하세요.

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

기본 테마 커스터마이징에 대해 더 알아보려면 테마 커스터마이징 문서를 참고하세요.

임의 값

테마에 포함시키기 어려운 max-height 값을 일회성으로 사용해야 한다면, 대괄호를 사용해 임의의 값으로 속성을 즉석에서 생성할 수 있습니다.

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

임의 값 지원에 대해 더 알아보려면 임의 값 문서를 참고하세요.