--- title: max-height slug: Web/CSS/max-height translation_of: Web/CSS/max-height ---
{{CSSRef}}

CSS属性 max-height 设置元素的最大高度。它防止{{cssxref("height")}}属性的使用值(used value) 大于 max-height 的指定值。

{{EmbedInteractiveExample("pages/css/max-height.html")}}

max-height 会覆盖{{cssxref("height")}}, 而{{cssxref("min-height")}} 会覆盖 max-height.

Syntax

/* <length> value */
max-height: 3.5em;

/* <percentage> value */
max-height: 75%;

/* Keyword values */
max-height: none;
max-height: max-content;
max-height: min-content;
max-height: fit-content(20em);

/* Global values */
max-height: inherit;
max-height: initial;
max-height: unset;

Values

{{cssxref("<length>")}}
Defines the max-height as an absolute value.
{{cssxref("<percentage>")}}
Defines the max-height as a percentage of the containing block's height.
auto
The browser will calculate and select a max-height for the specified element.
none
No limit on the size of the box.
max-content
The intrinsic preferred max-height.
min-content
The intrinsic minimum max-height.
fit-content({{cssxref("<length-percentage>")}})
Uses the fit-content formula with the available space replaced by the specified argument, i.e. min(max-content, max(min-content, argument)).

Formal syntax

{{csssyntax}}

Examples

table { max-height: 75%; }

form { max-height: none; }

Accessibility concerns

Ensure that elements set with a max-height are not truncated and/or do not obscure other content when the page is zoomed to increase text size.

Specifications

Specification Status Comment
{{SpecName('CSS4 Sizing', '#width-height-keywords', 'max-height')}} {{Spec2('CSS4 Sizing')}}
{{SpecName('CSS3 Sizing', '#width-height-keywords', 'max-height')}} {{Spec2('CSS3 Sizing')}} Adds the max-content, min-content, fit-content keywords.
{{SpecName('CSS2.1', 'visudet.html#min-max-heights', 'max-height')}} {{ Spec2('CSS2.1') }} Initial definition.

{{cssinfo}}

Browser compatibility

{{Compat("css.properties.max-height")}}

See also