并未完全覆盖屏幕
body {
background-image: url("../www/img/tracker_bg.jpg");
background-size: cover;
background-repeat: no-repeat;
}
虽然使用附件固定并改变了风格来设置背景但是对于某些屏幕它并没有覆盖整个屏幕作为背景
答案 0 :(得分:1)
你可以尝试这个CSS3代码:
body{
background: url(img/tracker_bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
来自here的帮助