マークアップ内の右と左の両方の div をクリアするフッター付きのシンプルな 2 列レイアウトがあります。問題は、すべてのブラウザでフッターをページの下部に維持できないことです。コンテンツによってフッターが下に押し下げられる場合は機能しますが、常にそうなるとは限りません。
ベストアンサー1
固定フッターを取得するには:
コンテンツに を付けてください
<div>
。class="wrapper"
閉店直前に。
</div>
wrapper
<div class="push"></div>
場所が閉まった直後。
</div>
wrapper
<div class="footer"></div>
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -142px; /* the bottom margin is the negative value of the footer's height */
}
.footer, .push {
height: 142px; /* .push must be the same height as .footer */
}
<div class="wrapper">wrapper
<div class="push">push</div>
</div>
<div class="footer">footer</div>