在CSS中添加背景图像的正确方法是什么?

时间:2017-02-27 05:34:23

标签: html css

我想在全宽的部分中添加background image。但我无法弄清楚使用background-image在CSS中添加图片的正确方法是什么。

所以,这是我的代码:

HTML

<section id="main-banner">
 <div class="banner">               
  <h1>This H1 title</h1>
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque at tempor turpis. Suspendisse mattis, est eget volutpat elementum, lacus odio euismod ipsum, a placerat ligula mi ut nibh. In vitae leo facilisis, accumsan massa ultrices,</p>
 </div>
</section>

CSS

#main-banner { 
  background: url('../img/banner-img.png') no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

我的图片显示不正确。

enter image description here

1 个答案:

答案 0 :(得分:0)

试试这个

sheet.addRule(".foo", "color: pink;", -1);