1. 개발자를 위한 웹 기술
  2. CSS
  3. CSS 참고서
  4. Properties
  5. max-width

This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

max-width

Baseline Widely available *

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015년 7월⁩.

* Some parts of this feature may have varying levels of support.

max-width CSS 속성은 요소의 최대 너비를 설정합니다. max-widthwidth 속성의 사용값이 자신의 값보다 커지는걸 방지합니다.

시도해 보기

max-width: 150px;
max-width: 20em;
max-width: 75%;
max-width: 20ch;
<section class="default-example" id="default-example">
 <div class="transition-all" id="example-element">
 Change the maximum width.
 </div>
</section>
#example-element {
 display: flex;
 flex-direction: column;
 background-color: #5b6dcd;
 height: 80%;
 justify-content: center;
 color: #ffffff;
}

max-widthwidth를 재설정하고, min-heightmax-width를 재설정합니다.

구문

css
/* <length> 값 */
max-width: 3.5em;
/* <percentage> 값 */
max-width: 75%;
/* 키워드 값 */
max-width: none;
max-width: max-content;
max-width: min-content;
max-width: fit-content;
max-width: fill-available;
/* 전역 값 */
max-width: inherit;
max-width: initial;
max-width: unset;

키워드 값

none

최대 너비를 정하지 않음.

max-content Experimental

본질적인 선호 높이.

min-content Experimental

본질적인 최소 높이.

fill-available Experimental

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

fit-content Experimental

max-content와 동일.

형식 구문

max-width = 
none |
<length-percentage [0,∞]> |
min-content |
max-content |
fit-content( <length-percentage [0,∞]> ) |
<calc-size()> |
<anchor-size()> |
stretch |
fit-content |
contain

<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> =
<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

예제

다음 예제에서, 자식(child) 요소의 너비는 150픽셀과 부모(parent) 요소의 너비 중 더 작은 값이 됩니다.

html
<div id="parent">
 <div id="child">
 Fusce pulvinar vestibulum eros, sed luctus ex lobortis quis.
 </div>
</div>
css
#parent {
 background: lightblue;
 width: 300px;
}
#child {
 background: gold;
 width: 100%;
 max-width: 150px;
}

fit-content 값을 사용하여 해당 요소의 내용이 필요로 하는 너비만 차지하도록 설정할 수 있습니다.

html
<div id="parent">
 <div id="child">Child Text</div>
</div>
css
#parent {
 background: lightblue;
 width: 300px;
}
#child {
 background: gold;
 width: 100%;
 max-width: -moz-fit-content;
 max-width: -webkit-fit-content;
}

접근성 고려사항

페이지의 확대 또는 글씨 크기를 키운 후에도 max-width를 설정한 요소의 내용이 잘리거나, 다른 요소를 가리지 않도록 주의하세요.

명세

Specification
CSS Box Sizing Module Level 4
# sizing-values
초기값 none
적용대상all elements but non-replaced inline elements, table rows, and row groups
상속 no
Percentagesrefer to the width of the containing block
계산 값 the percentage as specified or the absolute length or none
Animation type a length, percentage or calc();

브라우저 호환성

같이 보기

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.

AltStyle によって変換されたページ (->オリジナル) /