Bootstrap 4添加BG图像

时间:2018-07-08 11:51:00

标签: bootstrap-4

I am using this template

当尝试添加背景图像时,它不会显示。我完整的自定义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;
}

有什么建议吗?

1 个答案:

答案 0 :(得分:2)

更改

 background: url(img/background.jpg)

 background: url("img/background.jpg")

如果不检查您的路径