隐藏滚动条 支持Chrome, IE (6+), Firefox, Opera, and Safari
纯css 默认:
.element { overflow: hidden; }
Chrome and Safari
.element::-webkit-scrollbar { width: 0 !important }
IE 10+.
.element { -ms-overflow-style: none; }
Firefox, 但已被弃用.
.element { overflow: -moz-scrollbars-none; }
如果是
移动端已经够用。
参考:
web下还可以使用js:
jquery.nicescroll
https://github.com/inuyaksa/jquery.nicescroll