簡単な解決策は、バックグラウンドdivに次のように設定することです。
#bgdiv {
max-width: 100%; /* Won't cause horizontal scrollbars */
max-height: 100%; /* Won't cause vertical scrollbars */
position: fixed; /* Positions relative to viewport */
top: 0; left: 0; /* Sets to top left of viewport */
z-index: 0; /* Places at a low z-index level */
}
また、コンテンツを格納するための追加要素を提供します。コンテンツ自体には次のものがあります。
#body {
position: relative; /* Permits z-index placement */
z-index: 1; /* Places just above background div */
}
フィドル: http: //jsfiddle.net/jonathansampson/R3kBP/4/