Hide scroll bar, but while still being able to scroll

前端 未结 30 3390
悲哀的现实
悲哀的现实 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 04:50

    Use this to hide the scrollbar but keep functionality:

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

    Hide scrollbar for IE, Edge and Firefox

    .example {
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
    }
    

提交回复
热议问题