css添加了原始滚动条要隐藏滚动条的显示
// 添加伪类
<style>
::-webkit-scrollbar {display:none}
</style>
<div style=" width:200px; height: 200px; overflow-y: scroll;">
</div>
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 3.0 许可协议。转载请注明出处!
// 添加伪类
<style>
::-webkit-scrollbar {display:none}
</style>
<div style=" width:200px; height: 200px; overflow-y: scroll;">
</div>