Element.clientHeight
io error: No such file or directory (os error 2) (/home/runner/work/yari/yari/mdn/translated-content/files/zh-tw/web/api/element/index.md)
Element.clientHeight
唯讀屬性會回傳元素內部高度(像素),包含 padding 但並未包含水平滾動條、border、margin。
clientHeight
可以被計算成 CSS height
+ CSS padding
- 水平滾動條的高度(如果有顯示)
备注:
這個屬性會以四捨五入進位取整數. 如果要使用非整數值, 使用 element.getBoundingClientRect()
.
表達式
var h = element.clientHeight;
h
代表元素高度(pixels)的正整數.
範例
規範
Specification |
---|
CSSOM View Module # dom-element-clientheight |
註
clientHeight
是在 the Internet Explorer 物件介紹的屬性.