How to hide scrollbar in Firefox?

前端 未结 14 785
攒了一身酷
攒了一身酷 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:58

    In some particular cases (the element is on the very right of the screen, or its parent overflow is hidden) this can be a solution:

    @-moz-document url-prefix() {
      .element {
        margin-right: -15px;
      }
    }
    

提交回复
热议问题