css添加了原始滚动条要隐藏滚动条的显示

版权声明:本文为博主原创文章,未经博主允许不得转载,达叔小生:往后余生,唯独有你 https://blog.csdn.net/qq_36232611/article/details/90150920
// 添加伪类
<style>
 ::-webkit-scrollbar {display:none}
</style>

<div style=" width:200px;   height: 200px;  overflow-y: scroll;">
</div>

猜你喜欢

转载自blog.csdn.net/qq_36232611/article/details/90150920