divの左上に画像の「ストリップ」を背景として固定添付プロパティで追加しようとしています。ここでは、次のとおりです。 https://jsfiddle.net/mvfariajr/recLr6yf/CSSの背景の固定固定+背景の背景幅の幅
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の左にはないということです。
助けが必要ですか? ありがとう!ここで
あなただけはい、しかし固定資産と無繰り返し – muratkh
で上から下に、左の画像を実行しようとしています。 – Marcio
@MichaelCokerあなたの結果と私のものとの違いはありません。私は固定された添付ファイルのプロパティ+ 70pxの固定幅を左上に配置しようとしています。 – Marcio