小程序中关于隐藏滚动条的方法

时间:2019-03-06 10:31:18   收藏:0   阅读:640
技术图片

代码:

 .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样式起到了作用。

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!