微信小程序-ios屏幕可左右滑动问题
现象:苹果手机页面可以左右滑动引起原因:部分元素超出屏幕.ad-finger{width: 152rpx;height: 75rpx;position: absolute;top: 156rpx;right:-8rpx;}// 或者下面的情况.ad-test{position: relative;display: flex;justify-content: space-between;width:
·
现象:苹果手机页面可以左右滑动
引起原因:部分元素超出屏幕
.ad-finger{
width: 152rpx;
height: 75rpx;
position: absolute;
top: 156rpx;
right:-8rpx;
}
// 或者下面的情况
.ad-test{
position: relative;
display: flex;
justify-content: space-between;
width: 100%;
padding: 10rpx;
background-color: #ffffff;
}
解决办法:给最外面的盒子
view {
width:100%;
overflow-x:hidden;
}
更多推荐



所有评论(0)