Hide scroll bar, but while still being able to scroll

前端 未结 30 3281
悲哀的现实
悲哀的现实 2020-11-21 04:22

I want to be able to scroll through the whole page, but without the scrollbar being shown.

In Google Chrome it\'s:

::-webkit-scrollbar {
    display:         


        
30条回答
  •  走了就别回头了
    2020-11-21 05:05

    You can use the code below to hide the scroll bar, but while still being able to scroll:

    .element::-webkit-scrollbar { 
        width: 0 !important 
    }
    

提交回复
热议问题