CSS overflows are an annoyance that keep showing up once in a while and are really hard to debug. Unwanted and unexpected scrollbars can lead to hours of inspecting the DOM to figure out what element is causing the issue and clicking random elements in the Chrome dev tools until you find the culprit.
A simple programmatic way of figuring out what is causing the issue can be:
document.querySelectorAll('*').forEach(elem => {
if (elem.offsetWidth > document.documentElement.offsetWidth) {
console.log('Problem child: ', elem);
}
});
JavaScriptThis will log all the elements that have an offset width greater than the document’s width and then conveniently decide what to do with it!
I am terrible at optimizing my keyboard layout for anything. But off lately, my little…
I recently switched completely to the Brave browser and have set ad blocking to aggressive…
I was preparing a slide deck for a hackathon and decided to put in a…
I have been using npx a lot lately, especially whenever I want to use a…
Manually copy-pasting the output of a terminal command with a mouse/trackpad feels tedious. It is…
While working on a project, I wanted to do an integrity check of a file…
View Comments
Your script doesn't work because 'el' is undefined
Thanks for pointing that out, fixed!