CSS3 Height property is used to specify the height of an HTML element. The height of the HTML elements does not include border, margin, padding, etc. So, by default, the CSS3 Height property defines the height of the content area.
Height Property
We can change the Height of an HTML Element by using the CSS width property. We normally use px, vh, and % unit for height property.
Example
{height : 10px;}
property value
SYNTAX
width: auto | value | initial | inherit;
Note:
If you are designing a relative layout then you can use height % and height px unit.
If you are designing a responsive layout, please don't use height property, because this can create a problem in layout designing.
The max-width and min-hight properties override the CSS height property.