JS snippet to debug HTML overflows
20/08/20 :: st_mtime:10/02/2021var docWidth = document.documentElement.offsetWidth;
[].forEach.call(document.querySelectorAll("*"), function (el) {
if (el.offsetWidth > docWidth) {
console.log(el);
}
});