CSS Overflow

by Hristiyan Dodov

HTML

<html>
  <body style="overflow: hidden;">
    <p>
      body clientHeight: <span id="ch"></span><br>
      body scrollHeight: <span id="sh"></span><br>
    </p>
    <div style="width: 120vw; height: 120vh; background: lavender;">
      large content
    </div>
  </body>
</html>

JavaScript

document.getElementById('ch').innerHTML = document.body.clientHeight
document.getElementById('sh').innerHTML = document.body.scrollHeight