Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Created January 16, 2022 14:43
Show Gist options
  • Select an option

  • Save nathaningram/bdcad4db6c82da3ba121cf3985656169 to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/bdcad4db6c82da3ba121cf3985656169 to your computer and use it in GitHub Desktop.
Reveal Element Causing Horizontal Scroll
document.querySelectorAll('*').forEach(el => {
if (el.offsetWidth > document.documentElement.offsetWidth) {
console.log('Hold Up - This Guy Sucks ->: ', el);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment