css property
`max-height` CSS property
The max-height CSS property sets the maximum height of an element. It prevents the used value of the height property from becoming larger than the value specified for 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. <br />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 height, but min-height overrides max-height.
Syntax
/* <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;
Values
<length>- : Defines the
max-heightas an absolute value.
- : Defines the
<percentage>- : Defines the
max-heightas a percentage of the containing block’s height.
- : Defines the
none- : No limit on the size of the box.
max-content- : The intrinsic preferred
max-height.
- : The intrinsic preferred
min-content- : The intrinsic minimum
max-height.
- : The intrinsic minimum
fit-content- : Use the available space, but not more than max-content, i.e.,
min(max-content, max(min-content, stretch)).
- : Use the available space, but not more than max-content, i.e.,
fit-content(<length-percentage>)- : Uses the
fit-contentformula with the available space replaced by the specified argument, i.e.,min(max-content, max(min-content, argument)).
- : Uses the
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.
-
Accessibility
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.
- MDN Understanding WCAG, Guideline 1.4 explanations
- Understanding Success Criterion 1.4.4 | W3C Understanding WCAG 2.0
Formal definition
Formal syntax
Examples
Setting max-height using percentage and keyword values
table {
max-height: 75%;
}
form {
max-height: none;
}