How to Know Which HTML Element is Causing Vertical Scroll Bar

后端 未结 8 1785
失恋的感觉
失恋的感觉 2021-01-30 10:25

I am learning Bootstrap. On the getting started menu, there are few templates given. I am playing with that. One example is about fixed Footer. I used nav from previous example

8条回答
  •  遥遥无期
    2021-01-30 10:42

    Paste the below in the console and scroll. It will log the culprit in the console.

    function findScroller(element) {
        element.onscroll = function() { console.log(element)}
    
        Array.from(element.children).forEach(findScroller);
    }
    
    findScroller(document.body);
    

提交回复
热议问题