files/en-us/web/css/reference/properties/max-height/index.md
The max-height CSS property sets the maximum height of an element. It prevents the used value of the {{cssxref("height")}} property from becoming larger than the value specified for max-height.
{{InteractiveExample("CSS Demo: max-height")}}
max-height: 150px;
max-height: 7em;
max-height: 75%;
max-height: 10px;
<section class="default-example" id="default-example">
<div class="transition-all" id="example-element">
This is a box where you can change the maximum height.
This will limit
how tall the box can be, potentially causing an overflow.
</div>
</section>
#example-element {
display: flex;
flex-direction: column;
background-color: #5b6dcd;
justify-content: center;
color: white;
}
max-height overrides {{cssxref("height")}}, but {{cssxref("min-height")}} overrides max-height.
/* <length> value */
max-height: 3.5em;
max-height: anchor-size(height);
max-height: calc(anchor-size(--my-anchor self-block, 250px) + 2em);
/* <percentage> value */
max-height: 75%;
/* Keyword values */
max-height: none;
max-height: max-content;
max-height: min-content;
max-height: fit-content;
max-height: fit-content(20em);
max-height: stretch;
/* Global values */
max-height: inherit;
max-height: initial;
max-height: revert;
max-height: revert-layer;
max-height: unset;
max-height as an absolute value.max-height as a percentage of the containing block's height.none
max-height.max-height.min(max-content, max(min-content, stretch)).fit-content(<length-percentage>)
fit-content formula with the available space replaced by the specified argument, i.e., min(max-content, max(min-content, argument)).stretch
: Limits the maximum height of the element's margin box to the height of its containing block. It attempts to make the margin box fill the available space in the containing block, so in a way behaving similar to 100% but applying the resulting size to the margin box rather than the box determined by box-sizing.
[!NOTE] To check aliases used by browsers for the
stretchvalue and its implementation status, see the Browser compatibility section.
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.
{{cssinfo}}
{{csssyntax}}
table {
max-height: 75%;
}
form {
max-height: none;
}
{{Specifications}}
{{Compat}}