我正在尝试为我的网站获得一个不错的全屏图像背景。它在我测试过的几乎所有浏览器(browsershots.org)中都能正常工作,但在我的 Android 平板电脑上的 Chrome 中却没有按预期工作。如您所见,背景中有很多白色,应该是所有图像。
CSS:
body {
background: url(../../images/background/image1.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
意外结果: