Disable vertical scroll bar on div overflow: auto

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

    If you want to accomplish the same in Gecko (NS6+, Mozilla, etc) and IE4+ simultaneously, I believe this should do the trick:V

    body {
    overflow: -moz-scrollbars-vertical;
    overflow-x: hidden;
    overflow-y: auto;
    }
    

    This will be applied to entire body tag, please update it to your relevant css and apply this properties.

提交回复
热议问题