min-width
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.
시도해보기
구문
css
/* <length> 값 */
min-width: 3.5em;
/* <percentage> 값 */
min-width: 10%;
/* 키워드 값 */
min-width: max-content;
min-width: min-content;
min-width: fit-content;
min-width: fill-available;
/* 전역 값 */
min-width: inherit;
min-width: initial;
min-width: unset;
값
<length>
- : 고정 길이로 나타낸 최대 너비. 음수 값은 유효하지 않습니다.
<percentage>
- : 컨테이닝 블록 너비에 대한 백분율로 나타낸 최대 너비. 음수 값은 유효하지 않습니다.
키워드 값
auto
-
최소 너비를 정하지 않음.
max-content
Experimental-
본질적인 선호 높이.
min-content
Experimental-
본질적인 최소 높이.
fill-available
Experimental-
컨테이닝 블록의 너비에서 가로축 안쪽 및 바깥 여백과 테두리의 공간을 제외한 높이. (일부 브라우저는 매우 오래 된 이름인
available
로 구현함을 참고하세요.) fit-content
Experimental-
min(max-content, max(min-content, fill-available))
과 같음.
형식 구문
min-width =
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-width: 75%;
}
form {
min-width: 0;
}
명세
Specification |
---|
CSS Box Sizing Module Level 3 # min-size-properties |
CSS Box Sizing Module Level 4 # sizing-values |
초기값 | auto |
---|---|
적용대상 | all elements but non-replaced inline elements, table rows, and row groups |
상속 | no |
Percentages | refer to the width of the containing block |
계산 값 | the percentage as specified or the absolute length |
Animation type | a length, percentage or calc(); |
브라우저 호환성
BCD tables only load in the browser