monks/height
The height CSS property specifies the height of an element. By default, the property defines the height of the content area. If {{cssxref(“box-sizing”)}} is set to border-box, however, it instead determines the height of the border area.
Values
pub const auto_: #(String, String)
- : The browser will calculate and select a height for the specified element.
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 the fit-content formula with the available space replaced by the specified argument, i.e.,min(max-content, max(min-content, <length-percentage>)).
pub const revert_layer: #(String, String)
pub const stretch: #(String, String)
- : Sets the 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.