Skip to content

Instantly share code, notes, and snippets.

@ryanhalliday
Created November 3, 2016 03:55
Show Gist options
  • Save ryanhalliday/9951b36aba6039f5f7f63dc1bdce3d8f to your computer and use it in GitHub Desktop.
Save ryanhalliday/9951b36aba6039f5f7f63dc1bdce3d8f to your computer and use it in GitHub Desktop.
Snippet from CSS Tricks to find unintended body overflow
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