< view class = "container" > < view class = "box" ></ view > < view class = "box" ></ view > < view class = "box" ></ view > </ view > |
.container { width : 100% ; box-sizing: border-box; columns: 2 ; column-gap: 0 ; text-align : center ; } .box { background : orangered; border-radius: 16 rpx; display : inline- block ; width : 300 rpx; height : 300 rpx; margin-bottom : 32 rpx; box-shadow: 0 0 32 rpx #9a9a9a ; } |
这段代码能重现问题,如果去除.box的box-shadow,右边一列的第一个box就不会向下位移。Android无这个现象。
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)