--- title: max-height slug: Web/CSS/max-height translation_of: Web/CSS/max-height ---
CSS属性 max-height
设置元素的最大高度。它防止{{cssxref("height")}}属性的使用值(used value) 大于 max-height
的指定值。
max-height
会覆盖{{cssxref("height")}}, 而{{cssxref("min-height")}} 会覆盖 max-height
.
/* <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;
max-height
as an absolute value.max-height
as a percentage of the containing block's height.auto
max-height
for the specified element.none
max-content
max-height
.min-content
max-height
.fit-content({{cssxref("<length-percentage>")}})
fit-content
formula with the available space replaced by the specified argument, i.e. min(max-content, max(min-content, argument))
.table { max-height: 75%; } form { max-height: none; }
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.
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}}
{{Compat("css.properties.max-height")}}