You are here : cssCSS 3min-height

min-height - CSS 3

The min-height property is used to set the minimum height of an element.This prevents the value of the height property from becoming smaller than 
min-height.Note: The value of the min-height property overrides both
max-height and 
height.


Syntax

min-height: length|initial|inherit;


Example

p
	{
	   
	min-height: 100px;
	}


Output / Return Value


Limitations


Alternatives / See Also


Reference