CSS Property: min-height
The minimum height of the content area of a box.
As with height
, the minimum height is based on the content area only — any vertical padding
, border
, or margin
will be in addition.
Possible Values
Value | Note | Example |
---|---|---|
[length] | Should not be a negative value. | 200px |
[percentage] | Calculated in relation to the width of the containing box. Should not be a negative value. | 10% |
inherit | ||
initial | ||
unset |
Example
blackquote { min-height: 4em; }