Skip to content

Instantly share code, notes, and snippets.

@2JN
Last active March 2, 2025 02:49
Show Gist options
  • Save 2JN/b6d8cf1e6e9ad713d1679b5402d35133 to your computer and use it in GitHub Desktop.
Save 2JN/b6d8cf1e6e9ad713d1679b5402d35133 to your computer and use it in GitHub Desktop.
Get the element that causes horizontal scrolling
document.querySelectorAll("*").forEach(el => {
if(el.offsetWidth > document.documentElement.offsetWidth) {
console.log(el);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment