我尝试了不同的方法,大多数人建议使用img而不是background-image来获得完美的结果,但我想知道是否可以通过一些技巧来修复这个问题,并有一个全宽的背景图像?
Here's my live website that I have problem with
发布于 2015-09-05 02:38:02
由于您不需要img来垂直填充页面,并且我认为您希望整个图像适合水平方向,这就是我所做的。
body {
background: url(http://lorempixel.com/400/200/sports/) no-repeat center center fixed;
-webkit-background-size: 100%;
-moz-background-size: 100%;
-o-background-size: 100%;
background-size: 100%;
}请参阅fiddle http://jsfiddle.net/DIRTY_SMITH/x131ofex/3/
https://stackoverflow.com/questions/32401453
复制相似问题