uniapp中使用scroll-view 但小程序中不显示纵向滚动条

 

在网上搜索的答案,还挺管用

 

 ::-webkit-scrollbar
    {
        width: 16upx!important;
        height: 16upx!important;
        
    }
      
    /*定义滚动条轨道 内阴影+圆角*/
    ::-webkit-scrollbar-track
    {
        // -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        border-radius: 10px;
        
    }
      
    /*定义滑块 内阴影+圆角*/
    ::-webkit-scrollbar-thumb
    {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
        
    }
posted @ 2022-04-16 17:56  sharestone  阅读(1141)  评论(0编辑  收藏  举报