我收到了很多,但仍然沒有定位我的頁腳。我正在嘗試將頁腳放置在頁面的底部,並且只有在滾動到底部時纔可見。如何在頁面底部保留頁腳
我已經加入瞭如下因素類頁:
<div class="wrap">
<!-- Holds all the page content inside -->
<div class="spacer"></div>
</div>
<div class="footer">
.....
</div>
我已經加入瞭如下因素的CSS類:
.wrap {
min-height: 100%;
margin-bottom: -100px;
padding:5%;
}
/* Set the fixed height of the footer here */
.footer {
position: relative;
background-color: #222;
z-index: 1;
}
.spacer, #footer {
height: 100px;
}
我在做什麼錯誤,防止頁腳留總是在底部?
我認爲這是默認情況下...... mmhhh * confused * –
那麼,它現在做了什麼呢? – deceze
你可以在jsfiddle.net上用你所有的HTML和CSS代碼創建demo – Tushar