CSS

CSS Intro

CSS Intro Quiz

CSS Intro Exercise

CSS Basic

CSS Basic Quiz

CSS Basic Exercise

CSS Advance

CSS Advance Quiz

CSS Advance Exercise

CSS3

CSS3 Quiz

CSS3 Exercise

CSS Properties

CSS Functions

CSS Selectors

CSS min height Property

CSS min-height Property

 

 

The min-height property is used to specify the minimum height of an element. If the content is larger than the minimum height, it will overflow. However, it can be managed by overflow property. If the content is smaller than the minimum height, the min-height property has no effect.

 

Default Value:-

 

Its default value is 0.

 

Syntax:-

 

Its syntax is:- min-height: none | length | initial | inherit;

 

Further Explanation:-

 

Value Description
length Defines the minimum height in px, etc.
% Defines the minimum height in percent of the containing block
initial Sets this property to its default value.
inherit Inherits this property from its parent element.

Code Explanation

All Tutorials related to CSS Properties

All Sections related to CSS