Skip to content

Instantly share code, notes, and snippets.

@GabrielMMelo
Created December 17, 2018 10:32
Show Gist options
  • Save GabrielMMelo/2d6ef899d6fe91f7e730b14428bd3677 to your computer and use it in GitHub Desktop.
Save GabrielMMelo/2d6ef899d6fe91f7e730b14428bd3677 to your computer and use it in GitHub Desktop.
Detect tags with unintended box 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