当尝试添加背景图像时,它不会显示。我完整的自定义CSS是:
body {
padding-top: 54px;
background: url(img/background.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
@media (min-width: 992px) {
body {
padding-top: 56px;
}
}
.portfolio-item {
margin-bottom: 30px;
}
.pagination {
margin-bottom: 30px;
}
有什么建议吗?
答案 0 :(得分:2)
更改
background: url(img/background.jpg)
到
background: url("img/background.jpg")
如果不检查您的路径