忽略页面中间容器的引导程序的背景图像

时间:2015-12-15 13:22:44

标签: html css twitter-bootstrap

我需要在页面中间放置一个背景图像,如下所示。

enter image description here

一种方法是关闭div容器并将其放回我的图像之后。但我不认为这是最好的方式,所以在这里我会找到一些帮助。

我的HTML:

<div class="container">
    <div class="job">
        <h4>Disc Jockey</h4>
        <div class="row">
          <div class="col-lg-8 col-lg-offset-2">
            <p>
              Lorem ipsum...
            </p>
          </div>
        </div>
      </div>
</div>

在我的CSS中:

.job{
  margin-top: 75px;
  background:url(../img/bg-about.jpg) no-repeat center top scroll;
  background-size: 100% auto;
  height: 357px;
  width: 1920px;
}

提前致谢。

1 个答案:

答案 0 :(得分:-1)

尝试将类.job添加到<div class='container job'></div>我认为它必须帮助您