monks/max_height
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.
Values
pub const fit_content: #(String, String)
- : Use the available space, but not more than max-content, i.e.,
min(max-content, max(min-content, stretch)).-fit-content(<length-percentage>)- : Uses thefit-contentformula with the available space replaced by the specified argument, i.e.,min(max-content, max(min-content, argument)).
pub fn length(value: monks_of_style.Length) -> #(String, String)
length value of max-height
pub const revert_layer: #(String, String)
pub const stretch: #(String, String)
- : 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 thestretchvalue and its implementation status, see the Browser compatibility section.