听起来像背景附件:固定 + 背景大小:覆盖错误,只需删除背景属性中的“固定”,它就会起作用。
.jumbotron {
background: url(../images/bg_blur2.jpg) #e8df06 center no-repeat;
-webkit-background-size: cover;
-o-background-size: cover;
-moz-background-size: cover;
background-size: cover;
padding: 0;
}
或者如果你希望你的背景在所有其他浏览器中得到修复,而只是在 Chrome 中修复这个错误,你可以尝试:
@media screen and (-webkit-min-device-pixel-ratio:0) {
.jumbotron {
background: url(../images/bg_blur2.jpg) #e8df06 center no-repeat;
-webkit-background-size: cover;
-o-background-size: cover;
-moz-background-size: cover;
background-size: cover;
padding: 0;
}
}
我是一名优秀的程序员,十分优秀!