Skip to main content Accessibility Feedback

The Viewport

Element.getBoundingClientRect()

Get information about the size of an element and its position relative to the viewport.

let app = document.querySelector('#app');
let details = app.getBoundingClientRect();

// logs an object with top, let, bottom, right, height, and width properties
console.log(details);