原始图片
如果样式没有控制好的话,图片会变形:
<div class="quebank_pic_content" style="width: 115px; height: 152px;">
<img style="width: 115px;height: 152px;" src="../statics/images/cases1.jpg">
</div>
图片变形
修改后的代码,图片不会变形:
<div class="quebank_pic_content" style="width: 115px;height: 152px;">
<div class="quebank_pic" style="background: url(../statics/images/cases1.jpg) no-repeat;width: 100%;height: 100%;background-size: cover;-webkit-background-size: cover;-o-background-size: cover;background-position: center 0;"></div>
</div>
图片不会变形
网友评论