0

こんにちは、CSS の固定背景に少し問題があります。左隅に固定する必要があります。

http://i.imgur.com/Y1gKd.jpg

background: url('./images/coura.png') no-repeat fixed;
width: 451px;
height: 736px;
position: fixed;
background-attachment: left bottom;

それを行う方法はありますか?回答ありがとうございます。

4

3 に答える 3

1

要素は、背景にしたい場所にある必要があります。left: 0px; bottom: 0px;固定位置に合わせて追加します。

于 2012-06-06T22:13:53.430 に答える
0

別の方法は、背景の位置を次のbottom leftように設定することです。

background: url('./images/coura.png') bottom left no-repeat fixed;

于 2012-06-06T22:43:41.147 に答える
0

最も簡単な解決策は、画像を としてbackground-image設定し、プロパティを にbody設定することです。background-attachmentfixed

html, body { height: 100%; }
body { background: url('./images/coura.png') 0 100% no-repeat fixed; }

http://jsfiddle.net/Wexcode/FEskF/

于 2012-06-06T22:32:45.617 に答える