Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Element.clientHeight

Esta traducción está incompleta. Por favor, ayuda a traducir este artículo del inglés.

La propiedad de sólo lectura Element.clientHeight devuelve la altura de un elemento en píxeles, incluyendo el padding pero no las barras horizontales, el borde o el margen.

clientHeight puede ser calculado como CSS height + CSS padding - alto de la barra horizontal (si existe).

Nota: Esta propiedad redondeará el valor a un entero. Si necesitas un valor fraccional usa element.getBoundingClientRect().

Sintaxis

var h = element.clientHeight;

h es un entero que representa el alto de element en píxeles.

Ejemplo

 

             Image:Dimensions-client.png

Specification

Specification Status Comment
CSS Object Model (CSSOM) View Module
The definition of 'clientheight' in that specification.
Working Draft  

Notas

clientHeight es una propiedad introducida en el modelo de objeto de Internet Explorer.

Ver también

Etiquetas y colaboradores del documento

Etiquetas: 
 Colaboradores en esta página: maxijb, germanfr
 Última actualización por: maxijb,