Disable vertical scroll bar on div overflow: auto

后端 未结 8 1739
别跟我提以往
别跟我提以往 2020-12-23 08:48

Is it possible to allow only a horizontal scroll bar when using overflow:auto (or scroll)?

相关标签:
8条回答
  • 2020-12-23 09:29

    You should use only

    overflow-y:hidden; - Use this for hiding the Vertical scroll

    overflow-x:auto; - Use this to show Horizontal scroll

    Luke has mentioned as both hidden. so I have given this separately.

    0 讨论(0)
  • 2020-12-23 09:32

    These two CSS properties can be used to hide the scrollbars:

    overflow-y: hidden; // hide vertical
    overflow-x: hidden; // hide horizontal
    
    0 讨论(0)
提交回复
热议问题