迷茫2017-04-17 11:22:12
如果你指的是背景图的话... background-size: auto 100%;
会是你想要的效果的。
推荐看看MDN对background-size的解释
伊谢尔伦2017-04-17 11:22:12
background: url(../images/main1_bg.jpg) no-repeat center center;
background-size:cover;
background-attachment: fixed;
我以前写的,这里的background-size:100% 100%;估计可以,但比例会失真。
我现在用的办法都是把img设置为absolute,top:0;left:50%; height:100%; 然后在标签上写<img ... onload="setPos(this)">
然后这个setpos函数写在js文件里,function setpos(ts){ var w=ts.width/2; ts.style.margin="0 0 0 -"+w+"px"; } 这个函数会在图片加载完成后执行,让图片水平居中。