在开发微信小程序,scroll-view在安卓机上有横向滚动条现象,iphone没有此bug。
// 去掉scroll-view组件横向滚动条:
::-webkit-scrollbar{
width: 0;
height: 0;
color: transparent;
display:none;
}
在开发微信小程序,scroll-view在安卓机上有横向滚动条现象,iphone没有此bug。
// 去掉scroll-view组件横向滚动条:
::-webkit-scrollbar{
width: 0;
height: 0;
color: transparent;
display:none;
}