You’re reading the English version of this content since no translation exists yet for this locale. Help us translate this article!
The Element.clientHeight
read-only property is zero for elements with no CSS or inline layout boxes; otherwise, it's the inner height of an element in pixels. It includes padding but excludes borders, margins, and horizontal scrollbars (if present).
clientHeight
can be calculated as: CSS height + CSS padding - height of horizontal scrollbar (if present).
Note: This property will round the value to an integer. If you need a fractional value, use element.getBoundingClientRect()
.
Syntax
var intElemClientHeight = element.clientHeight;
intElemClientHeight
is an integer corresponding to the clientHeight
of element
in pixels. The clientHeight
property is read–only.
Example
Specification
Specification | Status | Comment |
---|---|---|
CSS Object Model (CSSOM) View Module The definition of 'clientHeight' in that specification. |
Working Draft |
Notes
clientHeight
is a property introduced in the Internet Explorer object model.
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
clientHeight | Chrome Full support 43 | Edge Full support 12 | Firefox Full support Yes | IE Full support 6 | Opera Full support Yes | Safari Full support 6 | WebView Android Full support 43 | Chrome Android Full support 43 | Firefox Android Full support Yes | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android Full support Yes |
Legend
- Full support
- Full support