Disable vertical scroll bar on div overflow: auto

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

    This rules are compatible whit all browser:

    body {overflow: hidden; }
    body::-webkit-scrollbar { width: 0 !important; }
    body { overflow: -moz-scrollbars-none; }
    body { -ms-overflow-style: none; }
    

提交回复
热议问题