Hidden scrollbars in Firefox (allows scrolling but just no scrollbar)

后端 未结 5 1890
日久生厌
日久生厌 2020-11-27 16:02

I\'d like to create a div that is able to scroll but does not display scrollbars. I have found a solution for Webkit (below) but how can this be done in other browsers?

5条回答
  •  Happy的楠姐
    2020-11-27 16:49

    2019 solution

    Since Firefox 64 there is a perfectly simple solution for this (working only in Firefox and Firefox mobile)

    scrollbar-width: none;
    

    Check the docs

    For the comers from the post marked as duplicate, there is also MS Edge solution:

    -ms-overflow-style: -ms-autohiding-scrollbar;
    

提交回复
热议问题