Hiding the scroll bar on an HTML page

前端 未结 21 1056
旧巷少年郎
旧巷少年郎 2020-11-22 00:07

Can CSS be used to hide the scroll bar? How would you do this?

21条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-22 00:50

    In addition to Peter's answer:

    #element::-webkit-scrollbar {
        display: none;
    }
    

    This will work the same for Internet Explorer 10:

     #element {
          -ms-overflow-style: none;
     }
    

提交回复
热议问题