web-dev-qa-db-ja.com

ページまたはコンテンツのいずれか低い方のフッター

私は次の構造を持っています:

<body>
    <div id="main-wrapper">
        <header>
        </header>
        <nav>
        </nav>
        <article>
        </article>
        <footer>
        </footer>
    </div>
</body>

JavaScriptを使用して、<article>にコンテンツを動的にロードします。このため、<article>ブロックの高さは変わる可能性があります。

<footer>ブロックは、コンテンツが多い場合はページの下部に、コンテンツが数行しかない場合はブラウザーウィンドウの下部に配置する必要があります。

現時点では、どちらか一方を実行できますが、両方は実行できません。

だから誰も私がこれを行う方法を知っていますか-<footer>を取得して、ページ/コンテンツの下部または画面の下部に貼り付けます。

81
Will

Ryan Faitのスティッキーフッター は非常に素晴らしいですが、基本的な構造が欠けていることがわかりました*。


フレックスボックスバージョン

古いブラウザをサポートしなくてもflexboxを使用できるほど幸運な場合、スティッキーフッターは簡単になりますandサポート動的なサイズのフッター。

flexboxでフッターを下に固定するためのコツは、同じコンテナ内の他の要素を垂直に曲げることです。必要なのは、display: flex0より大きいflex値を持つ少なくとも1つの兄弟を持つフルハイトラッパー要素です。

CSS:
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#main-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

article {
  flex: 1;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}
#main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}
article {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
header {
  background-color: #F00;
}
nav {
  background-color: #FF0;
}
article {
  background-color: #0F0;
}
footer {
  background-color: #00F;
}
<div id="main-wrapper">
   <header>
     here be header
   </header>
   <nav>
   </nav>
   <article>
     here be content
   </article>
   <footer>
     here be footer
   </footer>
</div>

フレックスボックスを使用できない場合、私の基本構造は次のとおりです。

<div class="page">
  <div class="page__inner">
    <header class="header">
      <div class="header__inner">
      </div>
    </header>
    <nav class="nav">
      <div class="nav__inner">
      </div>
    </nav>
    <main class="wrapper">
      <div class="wrapper__inner">
        <div class="content">
          <div class="content__inner">
          </div>
        </div>
        <div class="sidebar">
          <div class="sidebar__inner">
          </div>
        </div>
      </div>
    </main>
    <footer class="footer">
      <div class="footer__inner">
      </div>
    </footer>
  </div>
</div>

これはそれほど遠くありません:

<div id="main-wrapper">
    <header>
    </header>
    <nav>
    </nav>
    <article>
    </article>
    <footer>
    </footer>
</div>

フッターを固定するための秘Theは、フッターを含む要素の下部のパディングに固定することです。このでは、フッターの高さが静的である必要がありますが、フッターは通常静的な高さであることがわかりました。

HTML:
<div id="main-wrapper">
    ...
    <footer>
    </footer>
</div>
CSS:
#main-wrapper {
    padding: 0 0 100px;
    position: relative;
}

footer {
    bottom: 0;
    height: 100px;
    left: 0;
    position: absolute;
    width: 100%;
}
#main-wrapper {
  padding: 0 0 100px;
  position: relative;
}

footer {
  bottom: 0;
  height: 100px;
  left: 0;
  position: absolute;
  width: 100%;
}

header {
  background-color: #F00;
}
nav {
  background-color: #FF0;
}
article {
  background-color: #0F0;
}
footer {
  background-color: #00F;
}
<div id="main-wrapper">
   <header>
     here be header
   </header>
   <nav>
   </nav>
   <article>
     here be content
   </article>
   <footer>
     here be footer
   </footer>
</div>

フッターを#main-wrapperに固定すると、子が長くない限り、#main-wrapperを少なくともページの高さにする必要があります。これは、#main-wrappermin-height100%を持たせることによって行われます。また、その親であるhtmlおよびbodyもページと同じ高さである必要があることを覚えておく必要があります。

CSS:
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#main-wrapper {
    min-height: 100%;
    padding: 0 0 100px;
    position: relative;
}

footer {
    bottom: 0;
    height: 100px;
    left: 0;
    position: absolute;
    width: 100%;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#main-wrapper {
  min-height: 100%;
  padding: 0 0 100px;
  position: relative;
}

footer {
  bottom: 0;
  height: 100px;
  left: 0;
  position: absolute;
  width: 100%;
}

header {
  background-color: #F00;
}
nav {
  background-color: #FF0;
}
article {
  background-color: #0F0;
}
footer {
  background-color: #00F;
}
 <div id="main-wrapper">
   <header>
     here be header
   </header>
   <nav>
   </nav>
   <article>
     here be content
   </article>
   <footer>
     here be footer
   </footer>
</div>

もちろん、このコードはコンテンツがない場合でもフッターをページの下部から強制的に落とすので、私の判断に疑問を抱く必要があります。最後のトリックは、#main-wrappermin-height100%のパディングを含むように、100pxによって使用されるボックスモデルを変更することです。

CSS:
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#main-wrapper {
    box-sizing: border-box;
    min-height: 100%;
    padding: 0 0 100px;
    position: relative;
}

footer {
    bottom: 0;
    height: 100px;
    left: 0;
    position: absolute;
    width: 100%;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#main-wrapper {
  box-sizing: border-box;
  min-height: 100%;
  padding: 0 0 100px;
  position: relative;
}

footer {
  bottom: 0;
  height: 100px;
  left: 0;
  position: absolute;
  width: 100%;
}

header {
  background-color: #F00;
}
nav {
  background-color: #FF0;
}
article {
  background-color: #0F0;
}
footer {
  background-color: #00F;
}
 <div id="main-wrapper">
   <header>
     here be header
   </header>
   <nav>
   </nav>
   <article>
     here be content
   </article>
   <footer>
     here be footer
   </footer>
</div>

そして、元のHTML構造を持つスティッキーフッターがあります。 footerheight#main-wrapperpadding-bottomと等しいことを確認してください。設定する必要があります。


* Faitの構造に欠点があるのは、.footerおよび.header要素を異なる階層レベルに設定し、不要な.Push要素を追加するためです。

90
zzzzBov

Ryan Faitのスティッキーフッター は、過去に何度か使用した単純なソリューションです。

基本的なHTML

<div class="wrapper">
    <div class="header">
        <h1>CSS Sticky Footer</h1>
    </div>
    <div class="content"></div>
    <div class="Push"></div>
</div>
<div class="footer"></div>

CSS

* {
    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 */
}

/*

Sticky Footer by Ryan Fait
http://ryanfait.com/

*/

これを、これらの行に沿って何かがすでにある結果に似ているように翻訳します。

HTML

<body>
    <div class="wrapper">
        <header>
        </header>
        <nav>
        </nav>
        <article>
        </article>
        <div class="Push"></div>
    </div>
    <footer>
    </footer>
</body>

CSS:

* {
    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の高さに合わせて、ラッパーマージンのネガを更新することを忘れないでください。幸運を!

12
Josh Mein

追加のマークアップを追加せずにこの問題を解決しようとしていたので、次のソリューションを使用することになりました。

article {
  min-height: calc(100vh - 150px); /* deduct the height or margins of any other elements within wrapping container*/
}

footer {
  height: 50px;
}

header {
   height: 50px;
}

nav {
  height: 50px;
}
<body>
  <div id="main-wrapper">
    <header>
    </header>
    <nav>
    </nav>
    <article>
    </article>
    <footer>
    </footer>
  </div>
</body>

記事の最小高さを設定するには、ヘッダー、ナビゲーション、フッターの高さを知る必要があります。これにより、記事のコンテンツが数行しかない場合、フッターはブラウザーウィンドウの下部に固定され、そうでない場合はすべてのコンテンツの下に移動します。

上記および上記のその他のソリューションはこちらで見つけることができます: https://css-tricks.com/couple-takes-sticky-footer/

0
Galina E