How to find DOM elements that cause body overflow

Sometimes you may notice that your website displays an unintended horizontal scrollbar. You may be wondering what is the cause.
Most often this issue is caused by the DOM element being wider than a document.
You can try to find this element in the web inspector, but there is a great and easy JS solution that will console log all elements that go beyond the screen:
var docWidth = document.documentElement.offsetWidth;
[].forEach.call(
document.querySelectorAll('*'),
function(el) {
if (el.offsetWidth > docWidth) {
console.log(el);
}
}
);
That's it, no need to waste your time searching for overflowed elements anymore!
Related posts
Dive deeper into this topic with these related posts
You might also like
Discover more content from this category
People will tell you it's an antipattern, but what if a library needs you to do this?
Did you know that it's possible to set default value in Javascript object destructuring?
There is a common scenario: You'd like to debug your Phoenix app with break!/4
or IEx.pry/0
. Everything works fine, until... Phoenix server throws a timeout error statement.