Skip to content

Instantly share code, notes, and snippets.

@alxekb
Created July 29, 2020 07:28
Show Gist options
  • Save alxekb/01aebb81650f643a1aaab718f87f249a to your computer and use it in GitHub Desktop.
Save alxekb/01aebb81650f643a1aaab718f87f249a to your computer and use it in GitHub Desktop.
script to find horizontal scroll elements to apply overflow: hidden on it
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