固定フッターとして使用したい幅の広い画像があります。メインページは 960px で中央揃え、フッターは 1620px です。ブラウザ ウィンドウの幅が 960px を超えると、スクロール バーが表示されずにフッター イメージがどんどん表示されます。
どうすればこれを達成できますか?これまでのところ、私はこれを持っていますが、間違っています:
CSS
* {
margin: 0;
}
html, body {
height: 100%;
}
div#wrapper {
position: relative;
width: 100%;
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -340px;
text-align: center;
}
div#body-container {
width: 960px;
margin-left: auto;
margin-right: auto;
}
.footer, .push {
width: 1620px;
height: 340px;
}
HTML
<div id="wrapper">
<div id="body-container"> <!-- width: 960px -->
<!-- content -->
</div>
<!-- fixed footer -->
<div class="push"></div>
<div class="footer"><img src="img/footer.png"></div> <!-- width: 1620px -->
</div>