Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 520 Bytes

2021-04-15-get-overflow.md

File metadata and controls

23 lines (20 loc) · 520 Bytes
layout title date notebook tags
post
Найти элемент выходящий за вьюпорт
2021-04-15 00:00 +0000
frontend
javascript
css
qa

Как найти элемент, выходящий за вьюпорт/родителя

Выполните в консоле браузера:

var docWidth = document.documentElement.offsetWidth;

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