こんにちは、CSS の固定背景に少し問題があります。左隅に固定する必要があります。
background: url('./images/coura.png') no-repeat fixed;
width: 451px;
height: 736px;
position: fixed;
background-attachment: left bottom;
それを行う方法はありますか?回答ありがとうございます。
こんにちは、CSS の固定背景に少し問題があります。左隅に固定する必要があります。
background: url('./images/coura.png') no-repeat fixed;
width: 451px;
height: 736px;
position: fixed;
background-attachment: left bottom;
それを行う方法はありますか?回答ありがとうございます。
要素は、背景にしたい場所にある必要があります。left: 0px; bottom: 0px;
固定位置に合わせて追加します。
別の方法は、背景の位置を次のbottom left
ように設定することです。
background: url('./images/coura.png') bottom left no-repeat fixed;
最も簡単な解決策は、画像を としてbackground-image
設定し、プロパティを にbody
設定することです。background-attachment
fixed
html, body { height: 100%; }
body { background: url('./images/coura.png') 0 100% no-repeat fixed; }