<div id="st-integral-page">
<div class="background-box">
<img class="img-background" src="./img/ic_rebpack_background.png" alt="">
</div>
</div>
/*把图片做背景图*/
#st-integral-page .background-box {
width: 100%;
height: 100%;
top:0;
z-index: -1;
position: absolute;
}
/*把图片做背景图*/
#st-integral-page .background-box .img-background {
display: block;
outline: none;
border:0;
height: 100%;
width: 100%;
}
这样图片会变形.....
链接描述
这个其实是个很复杂的问题,要是简单就直接图片宽度100%,高度自适应,
或者将图片当做背景来使用,然后在背景图片中添加一个background-size: contain;属性。
如果你有空的话可以看一下我这篇博客,最后提到了手机淘宝响应式的原理,使用rem配合viewport。