正如您可以通過標題所告訴的,我希望將頁腳粘到底部。我知道那裏有很多話題。我已經讀過它們。但由於我的導航功能固定在頂部,所以無法工作。製作頁腳粘貼到頁面底部,並在頂部有一個固定的導航
佈局看起來是這樣的:
<header class="navbar navbar-fixed">
</header>
<div class="content">
<div class="container">
</div>
<div class="clearfooter"></div>
</div>
<footer>
</footer>
這裏是CSS:
html, body {
height: 100%;
}
body {
padding-top: 40px; /* height of the navbar */
}
.navbar-fixed {
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: 1030;
}
.content {
margin-bottom: -30px;
min-height: 100%;
position: relative;
}
.clearfooter {
clear: both;
height: 30px;
}
#footer {
height: 30px;
position: relative;
}
我想這tutorial。但是頁腳並未固定在窗口底部(不在視口中)。我已經嘗試過用額外的填充/保證金修復它,但沒有什麼工作:(
爲什麼你的#footer的位置是:相對的;不是位置:固定; ? – Sohail 2012-01-15 15:01:33