Questions tagged [offsetheight]

Height of an element relative to the element's offsetParent.

Syntax and values

var intElemOffsetHeight = document.getElementById(id_attribute_value).offsetHeight;

intElemOffsetHeight is a variable storing an integer corresponding to the offsetHeight pixel value of the element. offsetHeight is a read-only property.

Description

Typically, an element's offsetHeight is a measurement which includes the element borders, the element vertical padding, the element horizontal scrollbar (if present, if rendered) and the element CSS height.

Non-scrollable elements (CSS overflow not set or set to visible) will have equal offsetHeight and scrollHeight (is this right? scrollHeight doesn't include the border, while offsetHeight would include border).

For the document body object, the measurement includes total linear content height instead of the element CSS height. Floated elements extending below other linear content are ignored.

37 questions
0
votes
1 answer

fit div content in to page content using offset

If the height of content in div exceeds the height of the main div, we are trying to use offset and adjust the height but in vain. We tried all possible ways with offset top, offset height. Could any one help us to get the the correct way to…
0
votes
1 answer

MooTools - find height of div id for certain a div class

I am trying to use offsetHeight to find the height of an element based on its class, so far I can find the height based on div id, but what if I have multiple classes assigned to the same id? I adapted this jsfiddle to exemplify what I'm talking…
0
votes
1 answer

Javascript DOM offsetHeight issue on small screens

I have a simple code to set the height of one column, id="colLeft" to the height of another column, id="colRight", with no padding or borders: