The max-width
CSS property sets the maximum width of an element. It prevents the used value of the width
property from becoming larger than the value specified by max-width
.
max-width
overrides width
, but min-width
overrides max-width
.
/* <length> value */ max-width: 3.5em; /* <percentage> value */ max-width: 75%; /* Keyword values */ max-width: none; max-width: max-content; max-width: min-content; max-width: fit-content; max-width: fill-available; /* Global values */ max-width: inherit; max-width: initial; max-width: unset;
<length>
<length>
.<percentage>
<percentage>
of the containing block's width.none
max-content
min-content
fill-available
available
.)fit-content
max-content.
<length> | <percentage> | none | max-content | min-content | fit-content | fill-available
In this example, the "child" will be either 150 pixels wide or the width of the "parent," whichever is smaller:
<div id="parent"> <div id="child"> Fusce pulvinar vestibulum eros, sed luctus ex lobortis quis. </div> </div>
#parent { background: lightblue; width: 300px; } #child { background: gold; width: 100%; max-width: 150px; }
The fit-content
value can be used to set the width of an element based on the intrinsic size required by its content:
<div id="parent"> <div id="child"> Child Text </div> </div>
#parent { background: lightblue; width: 300px; } #child { background: gold; width: 100%; max-width: -moz-fit-content; max-width: -webkit-fit-content; }
Ensure that elements set with a max-width
are not truncated and/or do not obscure other content when the page is zoomed to increase text size.
Specification | Status | Comment |
---|---|---|
CSS Intrinsic & Extrinsic Sizing Module Level 3 The definition of 'max-width' 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 Transitions The definition of 'max-width' in that specification. | Working Draft | Defines max-width as animatable. |
CSS Level 2 (Revision 1) The definition of 'max-width' in that specification. | Recommendation | Initial definition. |
Initial value | none |
---|---|
Applies to | all elements but non-replaced inline elements, table rows, and row groups |
Inherited | no |
Percentages | refer to the width of the containing block |
Media | visual |
Computed value | the percentage as specified or the absolute length or none
|
Animation type | a length, percentage or calc(); |
Canonical order | the unique non-ambiguous order defined by the formal grammar |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 1 | 12 | 1
|
7 | 4
|
2 |
fit-content , max-content , and min-content
|
No
|
No | 3
|
No | No | No
|
fill-available
|
No | No | No | No | No | No |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | ? | ? | Yes | ? | ? | ? | ? |
fit-content , max-content , and min-content
|
? | ? | ? | No | ? | ? | No |
fill-available
|
? | ? | ? | ? | ? | ? | No |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/max-width