小程序中关于隐藏滚动条的方法
时间:2019-03-06 11:55:09
收藏:0
阅读:224
代码:
.course-list .list-wrap{
display: block;
width: 678rpx;
height: 353rpx;
margin: 0 auto;
margin-top: 91rpx;
overflow: hidden;
overflow-y: scroll;
}
::-webkit-scrollbar {
width: 0;
height: 0;
color: transparent;
}
主要是 -webkit-scrollbar该css样式起到了作用。
原文:https://blog.51cto.com/11016194/2358789
评论(0)