📜  css 查找溢出元素 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:28.532000             🧑  作者: Mango

代码示例1
// Copy paste this into your browser console
var docWidth = document.documentElement.offsetWidth;

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