Skip to content

Instantly share code, notes, and snippets.

@tejas-hosamani
Created February 4, 2022 03:19
Show Gist options
  • Save tejas-hosamani/9c0c8fcb716face3cb26968013958122 to your computer and use it in GitHub Desktop.
Save tejas-hosamani/9c0c8fcb716face3cb26968013958122 to your computer and use it in GitHub Desktop.
var docWidth = document.documentElement.offsetWidth;
[].forEach.call(
document.querySelectorAll('*'),
function(el) {
if (el.offsetWidth > docWidth) {
// el.style.outline = "1px solid red";
console.log(el, docWidth, el.offsetWidth);
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment