Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schalkburger/0309a5d6a0ef243c880f9964a9944796 to your computer and use it in GitHub Desktop.
Save schalkburger/0309a5d6a0ef243c880f9964a9944796 to your computer and use it in GitHub Desktop.
Finding/Fixing Unintended Body Overflow
javascript:var docWidth = document.documentElement.offsetWidth; [].forEach.call( document.querySelectorAll('*'), function(el) { if (el.offsetWidth > docWidth) { console.log(el); } } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment