2017-02-08 23 views
0

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の左にはないということです。

助けが必要ですか? ありがとう!ここで

+0

あなただけはい、しかし固定資産と無繰り返し – muratkh

+0

で上から下に、左の画像を実行しようとしています。 – Marcio

+0

@MichaelCokerあなたの結果と私のものとの違いはありません。私は固定された添付ファイルのプロパティ+ 70pxの固定幅を左上に配置しようとしています。 – Marcio

答えて

1

あなたが行く:

#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; 
 
}
<div id="wrapper"> 
 
    <div id="container"> 
 
    <h1>TESTING</h1> 
 
    </div> 
 
</div>

+0

私はバックグラウンドアタッチメントを持っています:固定 – Marcio

+0

よかった、すみませんでした。その場合、 'width'に対して' background-position'を設定する必要があります。答えを更新しました。 –

+0

@Marcioはあなたが望む[this](https://jsfiddle.net/websiter/tpb1v3nt/)ですか? –

関連する問題