在开发微信小程序,scroll-view在安卓机上有横向滚动条现象,iphone没有此bug。

1
2
3
4
5
6
7
8
// 去掉scroll-view组件横向滚动条:
::-webkit-scrollbar{
width: 0;
height: 0;
color: transparent;
display:none;
}

原文链接:https://skyner.cn/archives/wechat-mini-program-scrollview-component-solution-to-the-horizontal-scroll-bar-on-the-android-machine-z16iqak