码迷,mamicode.com
首页 > 微信 > 详细

微信小程序多张image图片排列有空隙解决方案

时间:2017-03-21 15:13:14      阅读:6992      评论:0      收藏:0      [点我收藏+]

标签:编辑   微信   images   ges   默认   微信小程序   min   height   nbsp   

上个项目是卖东西的,商品详情传的组图,排上去后发现每张图片下有大概10+rpx的下边距,显得很不好看。查了一下貌似是小程序的默认样式。没找到解决方案,看到有说用微信编辑器传图的,好像很麻烦就没去试,自己琢磨了两种方法。

原本不做处理的样子:

技术分享

.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;
}

两种都可以去掉这个间隙。效果如下

技术分享

 

微信小程序多张image图片排列有空隙解决方案

标签:编辑   微信   images   ges   默认   微信小程序   min   height   nbsp   

原文地址:http://www.cnblogs.com/liyinSakura/p/6594328.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!