--- title: max-width slug: Web/CSS/max-width tags: - CSS - CSS Property - CSS プロパティ - Reference translation_of: Web/CSS/max-width ---
max-width
は CSS のプロパティで、要素の最大幅を設定します。これは {{Cssxref("width")}} プロパティの使用値が、 max-width
で指定した値を上回ることを防ぎます。
max-width
は {{cssxref("width")}} を上書きしますが、 {{cssxref("min-width")}} は max-width
を上書きします。
/* <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: unset;
max-width
を絶対的な値で定義します。max-width
を包含ブロックの幅に対するパーセント値で定義します。auto
max-width
を計算して選択します。none
max-content
max-width
です。min-content
max-width
です。fit-content({{cssxref("<length-percentage>")}})
fit-content
式を使用します。すなわち、 min(max-content, max(min-content, 引数))
です。この例では、 "child" の幅が150ピクセルか "parent" の幅のどちらか小さい方になります。
<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; }
{{EmbedLiveSample("basic-max-width-demo", 350, 100)}}
ページを拡大縮小して文字サイズを拡大した際に、 max-width
を設定した要素が他のコンテンツを切り捨てたり妨げたりしないことを確認してください。
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName('CSS4 Sizing', '#width-height-keywords', 'max-width')}} | {{Spec2('CSS4 Sizing')}} | |
{{SpecName('CSS3 Sizing', '#width-height-keywords', 'max-width')}} | {{Spec2('CSS3 Sizing')}} | キーワード max-content , min-content , fit-content , fill-available を追加。 |
{{ SpecName('CSS2.1', 'visudet.html#min-max-widths', 'max-width') }} | {{ Spec2('CSS2.1') }} | 初回定義 |
{{cssinfo}}
{{Compat("css.properties.max-width")}}