Hiding the scroll bar on an HTML page

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

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

21条回答
  •  醉梦人生
    2020-11-22 00:58

    Set overflow: hidden; on the body tag like this:

    
    

    The code above hides both the horizontal and vertical scrollbar.

    If you want to hide only the vertical scrollbar, use overflow-y:

    
    

    And if you want to hide only the horizontal scrollbar, use overflow-x:

    
    

    Note: It'll also disable the scrolling feature. Refer to the below answers if you just want to hide the scroll bar, but not the scroll feature.

提交回复
热议问题