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

后端 未结 5 1892
日久生厌
日久生厌 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条回答
  •  隐瞒了意图╮
    2020-11-27 16:39

    well, there`s a much more easy way! just put

        ::-webkit-scrollbar {
        width: 0px;
        height: 10px;
        }           
    

    in your css style and you're done with!

提交回复
热议问题