ページの左下に画像を添付したままにしようとしていますが、How to keep background image on below left even scrollingとは異なり、ユーザーがスクロールするときに画像を追跡したくありません。
ウィンドウ全体を #wrap で埋め尽くすことに何か関係があるような気がしますが、その方法がわかりません。
スタイルシートに次のコードを追加して、正規化を使用しています。
body {
background-image:url('/img/graph-paper3.png');
background-repeat:repeat;
}
#container {
width:960px;
margin:0 auto;
}
#sidebar {
float:left;
width:310px;
padding:10px;
}
#main {
float:right;
width:610px;
padding:0 10px 10px 10px;
margin-top: 40px;
background-image:url('/img/top.png');
background-repeat:no-repeat;
background-position:top center;
}
#paper {
margin:40px 0 147px 0;
padding:20px;
background-color:#ffffff;
min-height:400px;
}
#footer {
clear:both;
padding:5px 10px;
}
#footer p {
margin:0;
}
#wrap {
background-image:url('/img/jeremy-david.png');
background-repeat:no-repeat;
background-position:left bottom;
}