1
我想總有我的頁腳在頁面的喜歡這裏的底部:http://getbootstrap.com/examples/sticky-footer-navbar/自舉3詞綴插件停止工作時的身體100%
我還使用加蓋的插件,這樣向下滾動導航欄就當(粘貼)到滾動瀏覽器窗口的頂部。然而每當我加入
body {
height: 100%
}
詞綴停止工作。是什麼賦予了?
我想總有我的頁腳在頁面的喜歡這裏的底部:http://getbootstrap.com/examples/sticky-footer-navbar/自舉3詞綴插件停止工作時的身體100%
我還使用加蓋的插件,這樣向下滾動導航欄就當(粘貼)到滾動瀏覽器窗口的頂部。然而每當我加入
body {
height: 100%
}
詞綴停止工作。是什麼賦予了?
您不必使用插件:
-1-使用導航欄固定頂類導覽列,如div class="navbar navbar-default navbar-fixed-top"
-2-確保你的頁面有正確的結構(自舉三是):
<body>
<!-- Wrap all page content here -->
<div id="wrap">
page content here
</div> <!-- end wrap -->
<div id="footer">
sticky footer here
</div> <!-- end footer -->
</body>
-3- 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 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;
}
就是這樣!請注意,CSS和頁面結構從Bootstrap 2有所變化
祝你好運!