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 July 2015.
試してみましょう
構文
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(20em);
/* グローバル値 */
max-width: inherit;
max-width: initial;
max-width: revert;
max-width: unset;
値
<length>
-
max-width
を絶対的な値で定義します。 <percentage>
-
max-width
を包含ブロックの幅に対するパーセント値で定義します。 none
-
ボックスの寸法を制限しません。
max-content
-
内容物が推奨する
max-width
です。 min-content
-
内容物の最小の
max-width
です。 fit-content(
<length-percentage>
)-
利用可能な空白を指定された引数で置き換えた
fit-content
式を使用します。すなわち、min(max-content, max(min-content, 引数))
です。
アクセシビリティの考慮
ページを拡大縮小して文字サイズを拡大した際に、 max-width
を設定した要素が他のコンテンツを切り捨てたり妨げたりしないことを確認してください。
公式定義
形式文法
max-width =
none |
<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
例
最大幅をピクセル単位で設定
この例では、 "child" の幅が 150 ピクセルか "parent" の幅のどちらか小さい方になります。
HTML
html
<div id="parent">
<div id="child">
Fusce pulvinar vestibulum eros, sed luctus ex lobortis quis.
</div>
</div>
CSS
css
#parent {
background: lightblue;
width: 300px;
}
#child {
background: gold;
width: 100%;
max-width: 150px;
}
結果
仕様書
Specification |
---|
CSS Box Sizing Module Level 4 # width-height-keywords |
CSS Box Sizing Module Level 4 # sizing-values |
ブラウザーの互換性
BCD tables only load in the browser
関連情報
- ボックスモデル,
box-sizing
width
,min-width
- 対応する論理的プロパティ:
max-inline-size
,max-block-size