CSS背景附件固定+固定背景大小宽度

时间:2017-02-08 20:44:52

标签: html css background-image css-position

我正在尝试添加" strip" div的左上角的图像作为具有固定附件属性的背景。这里是: https://jsfiddle.net/mvfariajr/recLr6yf/

HTML:

<div id="wrapper">
  <div id="container">
    <h1>TESTING</h1>
  </div>
</div>

CSS:

#wrapper {
  width: 100%;
  height: 500px;
  background-color: #ccc;
}

#container {
  text-align: center;
  margin: 0 auto;
  width: 80%;
  height: 400px;
  background-color: #fff;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 70px 100%;
  background-attachment: fixed;
  background-image: url(http://ariseartgroup.com/interiors/wp-content/uploads/2017/01/metal-texture-trim.jpg);
}

问题是背景并不总是在div的左边。

有任何帮助吗? 谢谢!

1 个答案:

答案 0 :(得分:2)

你走了:

&#13;
&#13;
#wrapper {
  width: 100%;
  height: 500px;
  background-color: #ccc;
}

#container {
  text-align: center;
  margin: 0 auto;
  width: 80%;
  height: 400px;
  background:white url("http://ariseartgroup.com/interiors/wp-content/uploads/2017/01/metal-texture-trim.jpg") 10% 50% no-repeat;
  background-size: 70px 100%;
  background-attachment: fixed;
}
&#13;
<div id="wrapper">
  <div id="container">
    <h1>TESTING</h1>
  </div>
</div>
&#13;
&#13;
&#13;

相关问题