在开发工具和安卓手机上表现没问题,但是在苹果7上面margin-bottom似乎没用,购物篮遮挡住了菜品蓝
在苹果手机上margin-bottom也起作用。
谢谢各位大佬帮忙!
iOS上是safari的锅,解决办法:
1、把margin-bottom改为padding-bottom
2、给父组件添加1rpx的padding-bottom
.parent{
height
:
auto
;
padding-bottom
1
rpx;
}
这是ios的问题,通常的做法是在最后加一句
<view style=“height: 1px;”></view>
mark