You are here : cssCSS 3height

height - CSS 3

The height property sets the height of an element.Note: The height property does not include padding, borders, or margins; 
it sets the height of the area inside the padding, border, and margin of the 
element!Note: The min-height and
max-height properties override height.


Syntax

height: auto|length|initial|inherit;


Example

p.ex
	{
	   
	height: 100px;
	   
	width: 100px;
	}


Output / Return Value


Limitations


Alternatives / See Also


Reference