私は長い間Twitterのブートストラップフレームワークを使用してきましたが、それらは最近バージョン3にアップデートされました!
私は、TwitterのブートストラップWebサイトで提供されているスターターテンプレートを使用していますが、それでも幸運はありません。
フッターにクラスnavbar-fixed-bottomを追加するだけです。
<div class="footer navbar-fixed-bottom">
公式のBoostrap3スティッキーフッターの例を参照すると、<div id="Push"></div>
を追加する必要はなく、CSSはより単純です。
公式の例で使用されているCSSは次のとおりです。
/* 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;
}
そして不可欠なHTML:
<body>
<!-- Wrap all page content here -->
<div id="wrap">
<!-- Begin page content -->
<div class="container">
</div>
</div>
<div id="footer">
<div class="container">
</div>
</div>
</body>
このCSSへのリンクは sticky-footerの例 のソースコードにあります。
<!-- Custom styles for this template -->
<link href="sticky-footer.css" rel="stylesheet">
フルURL: http://getbootstrap.com/examples/sticky-footer/sticky-footer.css
これは、すでにBootstrapにあるもの以外に追加のCSSやJavascriptを必要とせず、現在のフッターに干渉しないスティッキーフッターを追加する方法です。
ここでの例: イージースティッキーフッター
これをコピーしてコードに直接貼り付けるだけです。大騒ぎも大騒ぎもなし。
<div class="navbar navbar-default navbar-fixed-bottom">
<div class="container">
<p class="navbar-text pull-left">© 2014 - Site Built By Mr. M.
<a href="http://tinyurl.com/tbvalid" target="_blank" >HTML 5 Validation</a>
</p>
<a href="http://youtu.be/zJahlKPCL9g" class="navbar-btn btn-danger btn pull-right">
<span class="glyphicon glyphicon-star"></span> Subscribe on YouTube</a>
</div>
</div>
私はこの問題に少し遅れていますが、この質問に噛まれたばかりなので、この投稿に出会い、最終的にnavbar-fixed-bottom
クラスを有効にしてnavbar
name__を使用して、本当に簡単にそれを乗り越える方法を見つけました。例えば:
<div class="navbar navbar-default navbar-fixed-bottom">
<div class="container">
<span class="navbar-text">
Something useful
</span>
</div>
</div>
HTH
これが スティッキーフッターの簡略化されたコードです 今日の時点では/は常に最適化されており、これは良いことです。
_ html _
<!DOCTYPE html>
<html lang="en">
<head></head>
<body>
<!-- Fixed navbar -->
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<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="#">Project name</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</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 class="dropdown-header">Nav header</li>
<li><a href="#">Separated link</a></li>
<li><a href="#">One more separated link</a></li>
</ul>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<!-- Begin page content -->
<div class="container">
<div class="page-header">
<h1>Sticky footer with fixed navbar</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. A fixed navbar has been added with <code>padding-top: 60px;</code> on the <code>body > .container</code>.</p>
<p>Back to <a href="../sticky-footer">the default sticky footer</a> minus the navbar.</p>
</div>
<footer>
<div class="container">
<p class="text-muted">Place sticky footer content here.</p>
</div>
</footer>
</body>
</html>
_ css _
/* Sticky footer styles
-------------------------------------------------- */
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;
}
これが私のこの問題に対する最新の解決策です。
/* Sticky footer styles
-------------------------------------------------- */
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;
border-top: 1px solid #eee;
text-align: center;
}
.site-footer-links {
font-size: 12px;
line-height: 1.5;
color: #777;
padding-top: 20px;
display: block;
text-align: center;
float: center;
margin: 0;
list-style: none;
}
そしてこれを次のように使います。
<div class="footer">
<div class="site-footer">
<ul class="site-footer-links">
<li>© Zee and Company<span></span></li>
</ul>
</div>
</div>
または
html, body {
height: 100%;
}
.page-wrap {
min-height: 100%;
/* equal to footer height */
margin-bottom: -142px;
}
.page-wrap:after {
content: "";
display: block;
}
.site-footer, .page-wrap:after {
height: 142px;
}
.site-footer {
background: orange;
}
OPの回答:
これをあなたのCSSファイルに追加してください。
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 !important;
height: 100%;
/* Negative indent footer by it's height */
margin: 0 auto -60px;
}
/* Set the fixed height of the footer here */
#Push,
#footer {
height: 60px;
}
#footer {
background-color: #eee;
}
/* Lastly, apply responsive CSS fixes as necessary */
@media (max-width: 767px) {
#footer {
margin-left: -20px;
margin-right: -20px;
padding-left: 20px;
padding-right: 20px;
}
}
Push div
はwrap
の直後に来るべきです。
<div id="wrap">
*content goes here*
</div>
<div id="Push">
</div>
<div id="footer">
<div class="container credit">
</div>
<div class="container">
<p class="muted credit">© Your Page 2013</p>
</div>
</div>
付箋の例は私にはうまくいきません。私の解決策:
#footer {
position: fixed;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: 3em;
background-color: #f5f5f5;
text-align: center;
padding-top: 1em;
}
単純なjs
if ($(document).height() <= $(window).height()) {
$("footer").addClass("navbar-fixed-bottom");
}
柔軟なスティッキーフッター が欲しいのですが、ここに来ました。正解は私を正しい方向に導いた。
現在の(10月2日)ブートストラップ3 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;
}
フッターのサイズが固定されている限り、本文の下余白にはフッターのポケットを収めるためのプッシュが作成されます。しかし、フッターが固定されておらず、高さが60ピクセルを超えている場合は、ページコンテンツが隠されます。
柔軟にする:CSS本体の余白とフッターの高さを削除します。次に、JavaScriptを追加してフッターの高さを取得し、本文のmarginBottomを設定します。それはsetfooter()関数で行われます。次に、ページが最初にロードされたとき、およびサイズ変更時にsetfooterを実行するためのイベントリスナーを追加します。注:ウィンドウのサイズを変更せずにフッターにサイズ変更を引き起こすアコーディオンなどがある場合は、setfooter()関数を再度呼び出す必要があります。
スニペットを実行してからフルスクリーンでデモします。
function setfooter(){
var ht = document.getElementById("footer").scrollHeight;
document.body.style.marginBottom = ht + "px";
}
window.addEventListener('resize', function(){
setfooter();
}, true);
window.addEventListener('load', function(){
setfooter();
}, true);
html {
position: relative;
min-height: 100%;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
/* additional style for effect only */
text-align: center;
background-color: #333;
color: #fff;
}
body{
/* additional style for effect only not needed in bootstrap*/
padding:0;
margin: 0;
}
<div>
Page content
<br> <br>
line 3
<br> <br>
line 5
<br> <br>
line 7
</div>
<footer id="footer" class="footer">
<div class="container">
<p class="text-muted">Footer with a long text, so that resizing, to a smaller screen size, will cause the footer to grow taller. But the footer will not overflow onto the main page.</p>
</div>
</footer>
私はLESSを使ってパディングで私の単純化されたスティッキーフッターコードを書きます。質問はパディングについて話していないので、この答えはおそらく話題外です。もし興味があるなら this post をチェックしてください。
@footer-padding: 40px; // Set here the footer padding
@footer-inner-height: 150px; // Set here the footer height (without padding)
/* Calculates the overall footer height */
@footer-height: @footer-inner-height + @footer-padding*2;
html {
position: relative;
min-height: 100%;
}
body {
/* This avoids footer to overlap the page content */
margin-bottom: @footer-height;
}
footer{
/* Fix the footer on bottom and give it fixed height */
position: absolute;
bottom: 0;
width: 100%;
height: @footer-height;
padding: @footer-padding 0;
}
これは、完全にレスポンシブな可変長のスティッキーフッター用のCSSベースのソリューションです。
長所: footerは、高さをCSSでハードコードする必要がなくなったため、可変の高さにできます。
body {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
min-height: 100vh;
}
body > * {
-webkit-box-flex: 0;
-webkit-flex-grow: 0;
-moz-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
}
body > nav + .container {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-moz-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
}
/* Reset CSS and some footer styling. Only needed on StackOverflow */
body {
padding: 50px 0 0;
margin: 0;
}
footer {
background-color: #f8f8f8;
padding: 15px 0 5px;
border-top: 1px solid #e7e7e7;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<!DOCTYPE html>
<!-- Fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<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="#">Project name</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></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 role="separator" class="divider"></li>
<li class="dropdown-header">Nav header</li>
<li><a href="#">Separated link</a></li>
<li><a href="#">One more separated link</a></li>
</ul>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<!-- Begin page content -->
<div class="container">
<div class="page-header">
<h1>Responsive sticky footer of any height</h1>
</div>
<p class="lead">You can have a sticky footer of any height using this CSS. It's also fully responsive, no JavaScript needed.</p>
</div>
<footer class="footer">
<div class="container">
<p class="text-muted">Place sticky footer content here.</p>
<p class="text-muted">And some more content.</p>
<p class="text-muted">And more...</p>
</div>
</footer>
そしてこれは接頭辞の付いていないSCSS
です(gulp
/grunt
の場合)。
body {
display: flex;
flex-direction: column;
min-height: 100vh;
> * {
flex-grow: 0;
}
> nav + .container {
flex-grow: 1;
}
}
Jek-fdrvの答え に基づいて、すべてのデバイスとすべての解像度で確実に機能するように.on('resize', function()
を追加しました。
$(window).on('resize', function() {
if ($(document).height() <= $(window).height()) {
$('footer').addClass("navbar-fixed-bottom");
} else {
$('footer').removeClass("navbar-fixed-bottom");
}
});
現在のバージョンのブートストラップは、この機能ではもう機能しないようです。あなたがそれらのsticky-footer-navbarの例をダウンロードして本体領域に大量のコンテンツを配置するならば、フッターはビューポートの底を越えて押し下げられるでしょう。まったく粘着性がありません。
これはflexboxによって一度も永遠に解決されました。
https://philipwalton.github.io/solved-by-flexbox/demos/sticky-footer/
HTML
<body class="Site">
<header>…</header>
<main class="Site-content">…</main>
<footer>…</footer>
</body>
CSS
.Site {
display: flex;
min-height: 100vh;
flex-direction: column;
}
.Site-content {
flex: 1;
}
これらすべてを要約すると、フッター以外のすべてのコードはmin-height: 100%
以下になるはずです。
CSS-tricks の人達から私が見つけた最も簡単な方法はflexbox
を使うことです。これは本当の付箋フッターです。コンテンツがページの100%未満、ページの100%超の場合に機能します。
<body>
<div class="content">
content
</div>
<footer></footer>
</body>
そしてCSS:
html {
height: 100%;
}
body {
min-height: 100%;
display: flex;
flex-direction: column;
}
.content {
flex: 1;
}
これはブートストラップにとらわれないので、ブートストラップでもそれなしでも動作します。
これはあなたがブートストラップで使うことができるとてもシンプルできれいなスティッキーフッターです。完全にレスポンシブ!
HTML
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">
<img alt="Brand" src="">
</a>
</div>
</div>
</nav>
<footer></footer>
</body>
</html>
CSS
html {
position: relative;
min-height: 100%;
}
body {
margin: 0 0 100px;
}
footer {
position: absolute;
left: 0;
bottom: 0;
height: 100px;
width: 100%;
background-color: red;
}
例: CodePenデモ
フッターナビゲーションバーにクラスを追加してみてください。
navbar-fixed-bottom
それから custom.css と body paddingというCSSを作成してください。
body { padding-bottom: 70px; }
フッター用のクラスでブートストラップビルドを使用したい場合。また、JavaScriptを書く必要があります。
$(document).ready(function(){
$.fn.resize_footer();
$(window).resize(function() {
$.fn.resize_footer();
});
});
(function($) {
$.fn.resize_footer = function(){
$('body > .container-fluid').css('padding-bottom', $('body > footer').height());
};
});
コンテンツが固定フッターによって重なるのを防ぎ、ユーザーがウィンドウ/画面サイズを変更したときにpadding-bottom
を調整します。
上記のスクリプトでは、フッターはbodyタグの内側に直接配置されていると仮定しました。
<body>
... content of your page ...
<div class="navbar navbar-default navbar-fixed-bottom">
<div class="container">
<div class="muted pull-right">
Something useful
</div>
... some other footer content ...
</div>
</div>
</body>
これは間違いなく最善の解決策ではありません(JSを避けることができるため)が、オーバーラップに関して問題なく動作し、実装も応答も簡単です(CSSではheight
はハードコードされていません)。
haml&Sassの言葉では、必要なことはすべて次のとおりです。
app/view/layouts/application.html.haml
のハムル
%html
%head
%body
Some body stuff
%footer
footer content
app/assets/stylesheets/application.css.sass
のSass
$footer-height: 110px
html
position: relative
min-height: 100%
body
margin-bottom: $footer-height
body > footer
position: absolute
bottom: 0
width: 100%
height: $footer-height
#myfooter{
height: 3em;
background-color: #f5f5f5;
text-align: center;
padding-top: 1em;
}
<footer>
<div class="footer">
<div class="container-fluid" id="myfooter">
<div class="row">
<div class="col-md-12">
<p class="copy">Copyright © Your words</p>
</div>
</div>
</div>
</div>
</footer>
フレックスを使うだけ! HTMLでbodyとmainを必ず使用してください。これは(IE9サポートが必要な場合を除いて)最良の解決策の1つです。固定の高さやそれに似たものは必要ありません。
それはMaterialiseにもお勧めです!
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}