Skip to content
微信小程序scroll-view在安卓机上出现横向滚动条的解决办法

只需要在当前页面的wxss中添加以下代码即可

css
::-webkit-scrollbar{
    width: 0;
    height: 0;
    color: transparent;
    display:none;
}