CSS height

The CSS height property is used to specify the height of an element.

More specifically, the height property sets the height of the content area or border area (depending on the value of the box-sizing property) of certain boxes.

You can use a length or percentage to specify the height, or you can use one of the keywords.

Also see the max-height, width, and max-width properties.

Syntax

Possible Values

length
Specifies a length value for the height (for example 300px). Negative values are illegal.
percentage
Specifies a percentage value for the height (for example 80%). This is calculated as a height of the generated box's containing block. Negative values are illegal.
available
Equal to the containing block height minus the current element's margin, border, and padding.
max-content
The max-content height.
min-content
The min-content height.
fit-content
Equal to max(min-content, min(max-content, available)).
fit-content(length-percentage)
If specified for the inline axis, uses min(max-content size, max(min-content size, length-percentage)); otherwise computes to auto.
auto
The height depends on the values of other properties. The browser will calculate the height accordingly.
complex
The same as auto, except that elements with a complex aspect ratio are considered to have an intrinsic ratio.
stretch

Uses stretch-fit inline size or stretch-fit block size, as appropriate to the writing mode.

In addition, all CSS properties also accept the following CSS-wide keyword values as the sole component of their property value:

initial
Represents the value specified as the property's initial value.
inherit
Represents the computed value of the property on the element's parent.
unset
This value acts as either inherit or initial, depending on whether the property is inherited or not. In other words, it sets all properties to their parent value if they are inheritable or to their initial value if not inheritable.

General Information

Initial Value
auto
Applies To
All except for table columns, column groups, and non-replaced inline elements.
Inherited?
No
Media
Visual
Animatable
Yes (see example)

Example Code

Here are some examples of valid heights:

Official Specifications