Skip to content

Instantly share code, notes, and snippets.

@felixzapata
Created July 13, 2014 08:08
Show Gist options
  • Save felixzapata/7242afdbe31f1cbccfcd to your computer and use it in GitHub Desktop.
Save felixzapata/7242afdbe31f1cbccfcd to your computer and use it in GitHub Desktop.
Which might cause horizontal overflow scrolling
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