The Element.getBoundingClientRect()
method returns the size of an element and its position relative to the viewport.
var domRect = element.getBoundingClientRect();
The returned value is a DOMRect
object which is the union of the rectangles returned by getClientRects()
for the element, i.e., the CSS border-boxes associated with the element. The result is the smallest rectangle which contains the entire element, with read-only left
, top
, right
, bottom
, x
, y
, width
, and height
properties describing the overall border-box in pixels. Properties other than width
and height
are relative to the top-left of the viewport.
Empty border-boxes are completely ignored. If all the element's border-boxes are empty, then a rectangle is returned with a width
and height
of zero and where the top
and left
are the top-left of the border-box for the first CSS box (in content order) for the element.
The amount of scrolling that has been done of the viewport area (or any other scrollable element) is taken into account when computing the bounding rectangle. This means that the rectangle's boundary edges (top, right, bottom, left) change their values every time the scrolling position changes (because their values are relative to the viewport and not absolute). If you need the bounding rectangle relative to the top-left corner of the document, just add the current scrolling position to the top
and left
properties (these can be obtained using window.scrollX
and window.scrollY
) to get a bounding rectangle which is independent from the current scrolling position.
Scripts requiring high cross-browser compatibility can use window.pageXOffset
and window.pageYOffset
instead of window.scrollX
and window.scrollY.
Scripts without access to these properties can use code like this:
// For scrollX (((t = document.documentElement) || (t = document.body.parentNode)) && typeof t.scrollLeft == 'number' ? t : document.body).scrollLeft // For scrollY (((t = document.documentElement) || (t = document.body.parentNode)) && typeof t.scrollTop == 'number' ? t : document.body).scrollTop
// rect is a DOMRect object with eight properties: left, top, right, bottom, x, y, width, height var rect = obj.getBoundingClientRect();
Specification | Status | Comment |
---|---|---|
CSS Object Model (CSSOM) View Module The definition of 'Element.getBoundingClientRect()' in that specification. | Working Draft | Initial definition |
The returned DOMRect
object can be modified in modern browsers. This was not true with older versions which effectively returned DOMRectReadOnly
. With IE and Edge, not being able to add missing properties to their returned ClientRect
MSDN: ClientRect
object prevents backfilling x
and y
.
Due to compatibility problems (see below), it is safest to rely on only properties left
, top
, right
, and bottom
.
Properties in the returned DOMRect
object are not own properties. While the in
operator and for...in
will find returned properties, other APIs such as Object.keys()
will fail. Moreover, and unexpectedly, the ES2015 and newer features such as Object.assign()
and object rest/spread will fail to copy returned properties.
rect = elt.getBoundingClientRect() // The result in emptyObj is {} emptyObj = Object.assign({}, rect) emptyObj = { ...rect } {width, ...emptyObj} = rect
DOMRect
properties top
left
right
bottom
are computed from the other property values.
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | 3 | 4 | Yes | 4 |
width |
Yes | Yes | 3.5 | 9 | Yes | Yes |
height |
Yes | Yes | 3.5 | 9 | Yes | Yes |
x |
Yes | No
|
Yes | No
|
Yes | No |
y |
Yes | No
|
Yes | No
|
Yes | No |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | 4 | Yes | 4
|
? |
width |
Yes | Yes | ? | ? | Yes | Yes | ? |
height |
Yes | Yes | ? | ? | Yes | Yes | ? |
x |
Yes | Yes | ? | ? | Yes | ? | ? |
y |
Yes | Yes | ? | ? | Yes | ? | ? |
getClientRects()
MSDN: ClientRect
, an earlier version of DOMRect
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/element/getBoundingClientRect