Skip to content

Instantly share code, notes, and snippets.

@nfabredev
Last active September 9, 2018 20:11
Show Gist options
  • Save nfabredev/a838e2308bc6730ce40a9645ba05e4b0 to your computer and use it in GitHub Desktop.
Save nfabredev/a838e2308bc6730ce40a9645ba05e4b0 to your computer and use it in GitHub Desktop.
var docWidth = document.documentElement.offsetWidth;
[].forEach.call(
document.querySelectorAll('*'),
function(el) {
if (el.offsetWidth > docWidth) {
console.log(el);
}
}
);
// Courtesy of: https://css-tricks.com/findingfixing-unintended-body-overflow/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment