min-height

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

max-height CSS 속성은 요소의 최소 높이를 설정합니다. min-heightheight 속성의 사용값이 자신의 값보다 작아지는걸 방지합니다.

시도해보기

min-heightmax-height 또는 height보다 커지면 요소의 높이는 min-height의 값을 사용합니다.

구문

css
/* <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 Experimental

본질적인 선호 높이.

min-content Experimental

본질적인 최소 높이.

fill-available Experimental

컨테이닝 블록의 높이에서 세로축 안쪽 및 바깥 여백과 테두리의 공간을 제외한 높이. (일부 브라우저는 매우 오래 된 이름인 available로 구현함을 참고하세요.)

fit-content Experimental

CSS3 Box 모듈에 따라 min-content의 다른 이름. CSS3 Sizing 모듈은 더 복잡한 알고리즘을 정의하지만, 모든 브라우저에서 실험 기능으로도 구현하지 않습니다.

형식 구문

min-height = 
auto |
<length-percentage [0,∞]> |
min-content |
max-content |
fit-content( <length-percentage [0,∞]> ) |
<calc-size()> |
<anchor-size()>

<length-percentage> =
<length> |
<percentage>

<calc-size()> =
calc-size( <calc-size-basis> , <calc-sum> )

<anchor-size()> =
anchor-size( [ <anchor-name> || <anchor-size> ]? , <length-percentage>? )

<calc-size-basis> =
<intrinsic-size-keyword> |
<calc-size()> |
any |
<calc-sum>

<calc-sum> =
<calc-product> [ [ '+' | '-' ] <calc-product> ]*

<anchor-name> =
<dashed-ident>

<anchor-size> =
width |
height |
block |
inline |
self-block |
self-inline

<calc-product> =
<calc-value> [ [ '*' | '/' ] <calc-value> ]*

<calc-value> =
<number> |
<dimension> |
<percentage> |
<calc-keyword> |
( <calc-sum> )

<calc-keyword> =
e |
pi |
infinity |
-infinity |
NaN

예제

css
table {
  min-height: 75%;
}

form {
  min-height: 0;
}

명세

Specification
CSS Box Sizing Module Level 3
# width-height-keywords
CSS Box Sizing Module Level 4
# sizing-values

브라우저 호환성

BCD tables only load in the browser

같이 보기