How to hide scrollbar in Firefox?

前端 未结 14 730
攒了一身酷
攒了一身酷 2020-11-29 04:33

I just found out how to hide the scrollbar in Google Chrome, I did it with this code:

::-webkit-scrollbar { display: none; }

The only p

14条回答
  •  [愿得一人]
    2020-11-29 05:02

    To hide scroll bar on Chrome, Firefox and IE you can use this:

    .hide-scrollbar
    {
        overflow: auto;
        -ms-overflow-style: none; /* IE 11 */
        scrollbar-width: none; /* Firefox 64 */
    }
    

提交回复
热议问题