--- title: max-height slug: Web/CSS/max-height tags: - CSS - CSS Property - Layout - Maximum - Reference - dimensions - height - limit - max-height - 'recipe:css-property' - size translation_of: Web/CSS/max-height ---
max-height
は CSS のプロパティで、要素の最大高を設定します。これは {{Cssxref("height")}} プロパティの使用値が、 max-height
に指定した値を上回ることを防ぎます。
max-height
は {{cssxref("height")}} を上書きしますが、 {{cssxref("min-height")}} は max-height
を上書きします。
/* <length> 値 */ max-height: 3.5em; /* <percentage> 値 */ max-height: 75%; /* キーワード値 */ max-height: none; max-height: max-content; max-height: min-content; max-height: fit-content(20em); /* グローバル値 */ max-height: inherit; max-height: initial; max-height: unset;
max-height
を絶対的な値で定義します。max-height
を包含ブロックの高さに対するパーセント値で定義します。none
max-content
max-height
です。min-content
max-height
です。fit-content({{cssxref("<length-percentage>")}})
fit-content
式を使用します。すなわち、 min(max-content, max(min-content, 引数))
です。テキストを大きくするためにページを拡大したときに、 max-height
を設定した要素が切り取られたり、他のコンテンツを覆い隠したりしないことを確認してください。
{{cssinfo}}
table { max-height: 75%; } form { max-height: none; }
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName('CSS4 Sizing', '#width-height-keywords', 'max-height')}} | {{Spec2('CSS4 Sizing')}} | |
{{SpecName('CSS3 Sizing', '#width-height-keywords', 'max-height')}} | {{Spec2('CSS3 Sizing')}} | キーワード max-content , min-content , fit-content を追加。 |
{{SpecName('CSS2.1', 'visudet.html#min-max-heights', 'max-height')}} | {{ Spec2('CSS2.1') }} | 初回定義 |
{{Compat("css.properties.max-height")}}