所以我有一个带有覆盖整个页面的背景图像的包装器 div。这通常有效......我可以最大化浏览器并且背景完全覆盖,但是如果有滚动,图像会在滚动点停止。
此图像显示了jsFiddle example/1的滚动和间隙:
#wrapper
{
background: url("../../Images/bgMain.jpg") no-repeat 50% 0 fixed;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
width: 100%;
}
和内部 div
#inner
{
margin: 0 auto;
height: 100%;
width: 980px;
}
任何意见将是有益的。谢谢