web-dev-qa-db-ja.com

Bootstrap 3でうまく機能するスティッキーフッターを作成する方法

トップナビゲーションの有無にかかわらず、サイトにスティッキーフッターがあることは非常に一般的です。ブートストラップには簡単に作成できる機能があります固定フッターですが、作成にそのような機能はありませんstickyフッター - 大きな違いがあります。

この質問をグーグルすると、何千人もの開発者が同じ質問を持っているが良い答えがないということが明らかになります。

皮肉なことに、 Bootstrap documentation ページ自体には、ブートストラップのスタイル設定と上部の固定ナビゲーションバーの横にスティッキーフッターがあります。それはすべてカスタムcssであり、フレームワークの一部ではありません。そのため、Bootstrapフレームワーク内ではうまく機能するので、明らかな方法は、カスタムスタイルを採用してリファクタリングすることですが、それは本来あるべきものよりも面倒です。

ブートストラップのトップナビゲーションバーと、望ましくない非粘着フッターのあるサンプルページについては、 this plunkr を参照してください。

問題:

(Thanks Softlayer - graphics

A non-sticky footer is pretty ugly

望ましい解決策:

A sticky footer is always at the bottom

もちろん、フッターはレスポンシブでクロスブラウザにもやさしいはずです。

76

Schmalzyが指摘しているように、答えはgetbootstrapサイトの例のセクションで こちら にあります。

しかし、その例はトップナビゲーションを含みません。スティッキーフッター付きの固定トップナビゲーションについては、 this plnkr、または以下のコードを参照してください。

スタイルCSS:

/* Styles go here */

/* Sticky footer styles
-------------------------------------------------- */

html,
body {
  height: 100%;
  /* The html and body elements cannot have any padding or margin. */
}

/* Wrapper for page content to Push down footer */
#wrap {
  min-height: 100%;
  height: auto;
  /* Negative indent footer by its height */
  margin: 0 auto -60px;
  /* Pad bottom by footer height */
  padding: 0 0 60px;
}

/* Set the fixed height of the footer here */
#footer {
  height: 60px;
  background-color: #f5f5f5;
}


/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */

.container {
  width: auto;
  max-width: 680px;
  padding: 0 15px;
}
.container .credit {
  margin: 20px 0;
}

Index.html:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="">
    <meta name="author" content="">
    <link rel="shortcut icon" href="../../docs-assets/ico/favicon.png">

    <title>Sticky Footer Template for Bootstrap</title>

    <!-- Bootstrap core CSS -->
    <link href="//netdna.bootstrapcdn.com/bootstrap/3.0.1/css/bootstrap.min.css" rel="stylesheet">

    <!-- Custom styles for this template -->
    <link href="style.css" rel="stylesheet">

    <!-- Just for debugging purposes. Don't actually copy this line! -->
    <!--[if lt IE 9]><script src="../../docs-assets/js/ie8-responsive-file-warning.js"></script><![endif]-->

    <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
      <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
    <![endif]-->
  </head>

  <body>

    <!-- Wrap all page content here -->
    <div id="wrap">

<nav class="navbar navbar-default" role="navigation">
  <!-- Brand and toggle get grouped for better mobile display -->
  <div class="navbar-header">
    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      <span class="sr-only">Toggle navigation</span>
      <span class="icon-bar"></span>
      <span class="icon-bar"></span>
      <span class="icon-bar"></span>
    </button>
    <a class="navbar-brand" href="#">Brand</a>
  </div>

  <!-- Collect the nav links, forms, and other content for toggling -->
  <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
    <ul class="nav navbar-nav">
      <li class="active"><a href="#">Link</a></li>
      <li><a href="#">Link</a></li>
      <li class="dropdown">
        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
        <ul class="dropdown-menu">
          <li><a href="#">Action</a></li>
          <li><a href="#">Another action</a></li>
          <li><a href="#">Something else here</a></li>
          <li class="divider"></li>
          <li><a href="#">Separated link</a></li>
          <li class="divider"></li>
          <li><a href="#">One more separated link</a></li>
        </ul>
      </li>
    </ul>
    <form class="navbar-form navbar-left" role="search">
      <div class="form-group">
        <input type="text" class="form-control" placeholder="Search">
      </div>
      <button type="submit" class="btn btn-default">Submit</button>
    </form>
    <ul class="nav navbar-nav navbar-right">
      <li><a href="#">Link</a></li>
      <li class="dropdown">
        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
        <ul class="dropdown-menu">
          <li><a href="#">Action</a></li>
          <li><a href="#">Another action</a></li>
          <li><a href="#">Something else here</a></li>
          <li class="divider"></li>
          <li><a href="#">Separated link</a></li>
        </ul>
      </li>
    </ul>
  </div><!-- /.navbar-collapse -->
</nav>

      <!-- Begin page content -->
      <div class="container">

        <div class="page-header">
          <h1>Sticky footer</h1>
        </div>
        <p class="lead">Pin a fixed-height footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS.</p>
        <p>Use <a href="../sticky-footer-navbar">the sticky footer with a fixed navbar</a> if need be, too.</p>
      </div>
    </div><!-- Wrap Div end -->

    <div id="footer">
      <div class="container">
        <p class="text-muted credit">Example courtesy <a href="http://martinbean.co.uk">Martin Bean</a> and <a href="http://ryanfait.com/sticky-footer/">Ryan Fait</a>.</p>
      </div>
    </div>


    <!-- Bootstrap core JavaScript
    ================================================== -->
    <!-- Placed at the end of the document so the pages load faster -->
  </body>
</html>
77

固定の高さのフッターに依存するスティッキーフッターの解決策は、レスポンシブアプローチ(フッターの高さが異なるブレークポイントで変わることが多い)では賛成できません。私が見た最も単純なレスポンシブスティッキーフッターソリューションは、トップレベルのコンテナでdisplay: tableを使うことを含みます。例えば:

http://galengidman.com/2014/03/25/responsive-flexible-height-sticky-footers-in-css/

http://timothy-long.com/responsive-sticky-footer/

http://www.visualdecree.co.uk/posts/2013/12/17/responsive-sticky-footers/

24
Chris Peckham

最善の方法は次のようにすることです。
HTML: スティッキーフッター
CSS: スティッキーフッターのCSS
HTMLコードサンプル:

<div class="container">
  <div class="page-header">
    <h1>Sticky footer</h1>
  </div>
  <p class="lead">Pin a fixed-height footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS.</p>
  <p>Use <a href="../sticky-footer-navbar">the sticky footer with a fixed navbar</a> if need be, too.</p>
</div>

<footer class="footer">
  <div class="container">
    <p class="text-muted">Place sticky footer content here.</p>
  </div>
</footer>

CSSコードサンプル:

    html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  background-color: #f5f5f5;
}

別のちょっとした微調整はそれをより完璧にするかもしれません(あなたのプロジェクトによります)、それでそれはモバイルビューのフッターに影響を与えません。

@media (max-width:768px){ .footer{position:absolute;width:100%;} }
@media (min-width:768px){ .footer{position:absolute;bottom:0;height:60px;width:100%;}}
19
abmmhasan

スティッキーフッターを機能させる簡単な方法を探しています。私はちょうどclass="navbar-fixed-bottom "を適用しました、そしてそれは即座に動きましたそれがそれがモバイル機器のためにフッターの設定を調整することであることを心に留めておくべきことだけ。

15
Panchope

簡単な答えを探している人のために、あなたは簡単な実用的な例を得ることができます ここから

html {
    position: relative;
    min-height: 100%;
}
body {
    margin-bottom: 60px /* Height of the footer */
}
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px /* Example value */
}

コンテンツとフッターの間にスペースを追加するには、bodymargin-bottomを使用してください。

6
Eshanel

Robodoが上記のコメントの1つで言ったこと、本当に素早い見栄え、そしてハックを伴わない、より重要で即応性のある(高さではない)アプローチはflexboxを使うことです。ブラウザのサポートに制限されていないのであれば、それは素晴らしい解決策です。

HTML

<body>
  <div class="site-content">
    Site content
  </div>
  <footer class="footer">
    Footer content
  </footer>
</body>

CSS

html {
  height: 100%;
}
body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.site-content {
  flex: 1;
}

ブラウザのサポートはこちらで確認できます。 http://caniuse.com/#feat=flexbox

Flexboxを使用したより一般的な問題解決策: https://github.com/philipwalton/solved-by-flexbox

2
adanski

ブートストラップ3に入っているので、このサイトはjQueryを使用します。そのため、解決策は、複雑なCSSで遊ぶのではなく、次のようになることもあります。

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <link href="css/bootstrap.min.css" rel="stylesheet" />
    <style>
        .my-footer {
            border-radius : 0px;
            margin : 0px; /* pesky margin below .navbar */
            position : absolute;
            width : 100%;
        }
    </style>
</head>
<body>
    <div class="container-fluid">
        <div class="row">
            <!-- Content of any length -->
            asdfasdfasdfasdfs <br />
            asdfasdfasdfasdfs <br />
            asdfasdfasdfasdfs <br />
        </div>
    </div>

    <div class="navbar navbar-inverse my-footer">
        <div class="container-fluid">
            <div class="row">
                <p class="navbar-text">My footer content goes here...</p>
            </div>
        </div>
    </div>

    <script src="js/jquery-1.11.0.min.js"></script>
    <script src="js/bootstrap.min.js"></script>

    <script type="text/javascript">
        $(document).ready(function () {
            var $docH = $(document).height();
            // The document height will grow as the content on the page grows.
            $('.my-footer').css({
                /*
                The default height of .navbar is 50px with a 1px border,
                change this 52 if you change the height of your footer.
                */
                top: ($docH - 52) + 'px'
            });
        });
    </script>
</body>
</html>

別の見方をすると、助けになれば幸いです。

敬具。

1
MichaelJTaylor

簡単に設定

position:absolute;
bottom:0;
width:100%;

あなたの.footerに

早くやれよ

1

あなたのHTMLが(ラフな)構造を持っている場合:

<div class="wrapper">
   <div>....</div>
   ...
   <div>....</div>
</div>
<div class="footer">
   ...
</div>

それからあなたのスクリーンの底にフッターを固定する最も簡単なcssは、

html, body {
    height: 100%;
}
.wrapper {
  min-height: calc(100vh - 80px);
}
.footer {
   height: 80px;
}

...フッターの高さは80ピクセルです。 calcは、ラッパーの高さをウィンドウの高さからフッターの高さ(80px)を引いた値に等しくなるように計算します。これは.wrapperの範囲外です。

1
Iakovos Ouranos

これまでに試したことがあるかどうかはわかりませんが、非常に簡単です。ちょうどこれをしてください:http://plnkr.co/edit/kmEWh7?p=preview

html, body {
  height: 100%;
}

footer {
  position: absolute;
  bottom: 0;
}
1
Charles Ingalls

私にとってうまくいったのは、htmlタグに対する相対位置を追加することでした。

html {
  min-height:100%;
  position:relative;
}
body {
  margin-bottom:60px;
}
footer {
  position:absolute;
  bottom:0;
  height:60px;
}
0