我有一个有趣的小问题。
我的body
元素上有一个背景图像,它在 Webkit 浏览器(特别是 Chrome)中像这样加载。
调整窗口大小似乎可以解决这个问题......
以下是它的预期外观:
CSS:
body {
padding-top: 360px;
font-family:Helvetica, Helvetica Neue, Arial, sans-serif;
background: url('images/page-bg2.jpg') no-repeat left center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
为什么会发生这种情况,我该如何解决?
现场直播:http ://www.healthfair.biz/
多谢你们!