Disable vertical scroll bar on div overflow: auto

后端 未结 8 1790
别跟我提以往
别跟我提以往 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:32

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

    overflow-y: hidden; // hide vertical
    overflow-x: hidden; // hide horizontal
    

提交回复
热议问题