代码之家  ›  专栏  ›  技术社区  ›  Muiter

引导程序4添加bg映像

  •  0
  • Muiter  · 技术社区  · 6 年前

    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 回复  |  直到 6 年前
        1
  •  2
  •   A.El Saeed    6 年前

    改变

     background: url(img/background.jpg)
    

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

    如果不检查你的路径