--- title: max-height slug: Web/CSS/max-height tags: - CSS - CSS Property - Reference translation_of: Web/CSS/max-height ---
max-height
CSS 속성은 요소의 최대 높이를 설정합니다. max-height
는 {{cssxref("height")}} 속성의 사용값이 자신의 값보다 커지는걸 방지합니다.
max-height
가 {{cssxref("height")}}를 재설정하고, {{cssxref("min-height")}}가 max-height
를 재설정합니다.
/* <length> 값 */ max-height: 3.5em; /* <percentage> 값 */ max-height: 75%; /* 키워드 값 */ max-height: none; max-height: max-content; max-height: min-content; max-height: fit-content; max-height: fill-available; /* 전역 값 */ max-height: inherit; max-height: initial; max-height: unset;
none
max-content
{{experimental_inline()}}min-content
{{experimental_inline()}}fill-available
{{experimental_inline()}}available
로 구현함을 참고하세요.)fit-content
{{experimental_inline()}}max-content
와 동일.table { max-height: 75%; } form { max-height: none; }
페이지의 확대 또는 글씨 크기를 키운 후에도 max-height
를 설정한 요소의 내용이 잘리거나, 다른 요소를 가리지 않도록 주의하세요.
Specification | Status | Comment |
---|---|---|
{{ SpecName('CSS3 Sizing', '#width-height-keywords', 'max-height') }} | {{ Spec2('CSS3 Sizing') }} | Adds the max-content , min-content , fit-content , and fill-available keywords. (Both CSS3 Box and CSS3 Writing Modes drafts used to define these keywords, but are superseded by this spec.) |
{{ SpecName('CSS3 Transitions', '#animatable-css', 'max-height') }} | {{ Spec2('CSS3 Transitions') }} | Defines max-height as animatable. |
{{ SpecName('CSS2.1', 'visudet.html#min-max-heights', 'max-height') }} | {{ Spec2('CSS2.1') }} | Initial definition. |
{{cssinfo}}
{{Compat("css.properties.max-height")}}