フッターをWebページの下部に表示するにはどうすればよいですか? 質問する

フッターをWebページの下部に表示するにはどうすればよいですか? 質問する

マークアップ内の右と左の両方の div をクリアするフッター付きのシンプルな 2 列レイアウトがあります。問題は、すべてのブラウザでフッターをページの下部に維持できないことです。コンテンツによってフッターが下に押し下げられる場合は機能しますが、常にそうなるとは限りません。

ベストアンサー1

固定フッターを取得するには:

  1. コンテンツに を付けてください<div>class="wrapper"

  2. 閉店直前</div>​​wrapper<div class="push"></div>

  3. 場所が閉まっ直後。</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>

おすすめ記事