How to hide scrollbar in Firefox?

前端 未结 14 734
攒了一身酷
攒了一身酷 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 04:50

    I tried everything and what worked best for my solution was to always have the vertical scrollbar show, and then add some negative margin to hide it.

    This worked for IE11, FF60.9 and Chrome 80

    body {
      -ms-overflow-style: none; /** IE11 */
      overflow-y: scroll;
      overflow-x: hidden;
      margin-right: -20px;
    }
    

提交回复
热议问题