问题:使用 for 循环渲染多张image图片,图片之间会出现缝隙
如下图片
解决方案1:flex
在css或者image组件style中添加以下:
.display: flex;
flex-direction: column;
解决方案2:margin-top负值
具体数值可自己调整到合适
.margin-top: -12rpx;
问题:使用 for 循环渲染多张image图片,图片之间会出现缝隙
如下图片
解决方案1:flex
在css或者image组件style中添加以下:
.display: flex;
flex-direction: column;
解决方案2:margin-top负值
具体数值可自己调整到合适
.margin-top: -12rpx;