How to hide scrollbar in Firefox?

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

    I got it working for me in ReactJS using create-react-app by putting this in my App.css:

    @-moz-document url-prefix() {
      html,
      body {
        scrollbar-width: none;
      }
    }
    

    Also, the body element has overflow: auto

提交回复
热议问题