max-height
CSS 속성은 요소의 최소 높이를 설정합니다. min-height
는 height
속성의 사용값이 자신의 값보다 작아지는걸 방지합니다.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
min-height
가 max-height
또는 height
보다 커지면 요소의 높이는 min-height
의 값을 사용합니다.
구문
/* <length> 값 */
min-height: 3.5em;
/* <percentage> 값 */
min-height: 10%;
/* 키워드 값 */
min-height: max-content;
min-height: min-content;
min-height: fit-content;
min-height: fill-available;
/* 전역 값 */
min-height: inherit;
min-height: initial;
min-height: unset;
값
<length>
- 고정 길이로 나타낸 최대 높이. 음수 값은 유효하지 않습니다.
<percentage>
- 컨테이닝 블록 높이에 대한 백분율로 나타낸 최대 높이. 음수 값은 유효하지 않습니다.
키워드 값
auto
- 최소 높이를 정하지 않음.
max-content
- 본질적인 선호 높이.
min-content
- 본질적인 최소 높이.
fill-available
- 컨테이닝 블록의 높이에서 세로축 안쪽 및 바깥 여백과 테두리의 공간을 제외한 높이. (일부 브라우저는 매우 오래 된 이름인
available
로 구현함을 참고하세요.) fit-content
- CSS3 Box 모듈에 따라
min-content
의 다른 이름. CSS3 Sizing 모듈은 더 복잡한 알고리즘을 정의하지만, 모든 브라우저에서 실험 기능으로도 구현하지 않습니다.
형식 구문
auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)where
<length-percentage> = <length> | <percentage>
예제
table { min-height: 75%; }
form { min-height: 0; }
명세
Specification | Status | Comment |
---|---|---|
CSS Box Sizing Module Level 3 The definition of 'min-height' in that specification. |
Working Draft | 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.) |
CSS Flexible Box Layout Module The definition of 'min-height' in that specification. |
Candidate Recommendation | Adds the auto keyword and uses it as the initial value. |
CSS Transitions The definition of 'min-height' in that specification. |
Working Draft | Defines min-height as animatable. |
CSS Level 2 (Revision 1) The definition of 'min-height' in that specification. |
Recommendation | Initial definition. |
초기값 | auto |
---|---|
적용대상 | all elements but non-replaced inline elements, table columns, and column groups |
상속 | no |
Percentages | The percentage is calculated with respect to the height of the generated box's containing block. If the height of the containing block is not specified explicitly (i.e., it depends on content height), and this element is not absolutely positioned, the percentage value is treated as 0 . |
Computed value | the percentage as specified or the absolute length |
Animation type | a length, percentage or calc(); |
브라우저 호환성
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.