Find what elements are causing overflow issue.

PHOTO EMBED

Tue Nov 05 2024 06:56:36 GMT+0000 (Coordinated Universal Time)

Saved by @grgbibek #javascript

var docWidth = document.documentElement.offsetWidth;

[].forEach.call(
	document.querySelectorAll('*'),
	function (el) {
		if (el.offsetWidth > docWidth) {
			console.log(el);
		}
	}
);
content_copyCOPY

Place the code snippet in the browser console.