针对不同浏览器去掉滚动条,但是保留滚动效果
webkit内核(chrome和safari浏览器):
.oh::-webkit-scrollbar { display: none; }
IE浏览器
.oh { -ms-overflow-style: none; }
FireFox浏览器
.oh { scrollbar-width: none; }