CSS Min-Height Property

CSS 1

CSS 2

CSS 3

No Yes Yes

Description

Specifies the minimum height to be used for an element.

Syntax

min-height: [value];

Possible values

  • [length]
  • [percentage]
  • inherit

Initial Value

0

Applies To

All elements except non-replaced inline elements and table elements

Inherited

No

Media

Visual

Example

h1 {min-height: 50px;}


View All CSS Properties