showing results for - "css find overflowing elements"
Dounia
19 Nov 2019
1// Copy paste this into your browser console
2var docWidth = document.documentElement.offsetWidth;
3
4[].forEach.call(
5  document.querySelectorAll('*'),
6  function(el) {
7    if (el.offsetWidth > docWidth) {
8      console.log(el);
9    }
10  }
11);