51 字
1 分钟
微信小程序scroll-view组件在安卓机上出现横向滚动条的解决办法
2024-12-05
2024-12-05

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

// 去掉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

微信小程序scroll-view组件在安卓机上出现横向滚动条的解决办法
https://shenhuanjie.github.io/posts/wechat-mini-program-scrollview-component-solution-to-the-horizontal-scroll-bar-on-the-android-machine-z16iqak/
作者
沈焕杰
发布于
2024-12-05
许可协议
CC BY-NC-SA 4.0