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
Sooner or later you'll have to change the null constraint in one of your DB relations. How to do it easily in Ecto?
Today's Advent of Code puzzle inspired me to create this TIL. It may sound trivial, but in fact, it's tricky if you are unfamiliar with the nuances of guards' functioning.
Sometimes you need to do some database operations at once. A simple example: User-A transfers money to User-B. Updating just one balance at the time creates a risk of data desynchronization. What if the first DB operation goes well but updating the second user’s data fails? Sounds like a hard to catch vulnerability.