Sizing
엘리먼트의 최대 높이를 설정하는 유틸리티
max-h-*
유틸리티를 사용해 엘리먼트의 최대 높이를 설정할 수 있습니다.
<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
를 사용하면 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>
더 자세히 알아보려면 반응형 디자인, 다크 모드, 그리고 다른 미디어 쿼리 수식어에 대한 문서를 확인하세요.
기본적으로 Tailwind의 최대 높이 스케일은 기본 간격 스케일과 높이에 특화된 몇 가지 추가 값의 조합으로 이루어져 있습니다.
tailwind.config.js
파일에서 theme.spacing
또는 theme.extend.spacing
을 수정하여 간격 스케일을 커스터마이징할 수 있습니다.
module.exports = {
theme: {
extend: {
spacing: {
'128': '32rem',
}
}
}
}
max-height
를 별도로 커스터마이징하려면 tailwind.config.js
파일의 theme.maxHeight
섹션을 사용하세요.
module.exports = {
theme: {
extend: {
maxHeight: {
'128': '32rem',
}
}
}
}
기본 테마 커스터마이징에 대해 더 알아보려면 테마 커스터마이징 문서를 참고하세요.
테마에 포함시키기 어려운 max-height
값을 일회성으로 사용해야 한다면, 대괄호를 사용해 임의의 값으로 속성을 즉석에서 생성할 수 있습니다.
<div class="max-h-[220px]">
<!-- ... -->
</div>
임의 값 지원에 대해 더 알아보려면 임의 값 문서를 참고하세요.