Skip to content

Instantly share code, notes, and snippets.

@rickyalmeidadev
Created January 28, 2022 00:14
Show Gist options
  • Save rickyalmeidadev/a66ab9df6c05990f380570bbf58b2eda to your computer and use it in GitHub Desktop.
Save rickyalmeidadev/a66ab9df6c05990f380570bbf58b2eda to your computer and use it in GitHub Desktop.
Finding unintended body overflow
new Array().forEach.call(document.querySelectorAll('*'), element => {
if (element.offsetWidth > document.documentElement.offsetWidth) {
console.log(element)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment