Skip to content

Instantly share code, notes, and snippets.

@nickeykhem
Created April 21, 2021 01:09
Show Gist options
  • Select an option

  • Save nickeykhem/70824f00863e748c135c6e614c94fbaf to your computer and use it in GitHub Desktop.

Select an option

Save nickeykhem/70824f00863e748c135c6e614c94fbaf to your computer and use it in GitHub Desktop.
Snippet for detecting overflow issues in CSS
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