🔸document size

🔰 JSbrowserDOMtypesDocument ⟩ size

document size

  • width: document.documentElement.offsetWidth

  • height: document.documentElement.offsetHeight

.offsetWidth, .offsetHeight will round the value to an integer. If you need a fractional value, use elem.getBoundingClientRect().

Last updated