Disable vertical scroll bar on div overflow: auto

后端 未结 8 1780
别跟我提以往
别跟我提以往 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.

提交回复
热议问题