本文主要是介绍微信小程序多张image图片排列有空隙解决方案,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
.det-pics-w image {width: 100%;min-height: 630rpx;
}.det-pics-w {position: relative;
}
第一种解决方案:flex
.det-pics-w image {width: 100%;min-height: 630rpx;
}.det-pics-w {position: relative;display: flex;flex-direction: column;
}
第二种解决方式:margin-top负值
.det-pics-w image {width: 100%;min-height: 630rpx;margin-top: -12rpx;
}.det-pics-w {position: relative;
}
两种都可以去掉这个间隙。效果如下
QQ群: 1102727334
这篇关于微信小程序多张image图片排列有空隙解决方案的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!