我有一個網站,我目前正在處理這需要粘性頁腳,因爲其中一些頁面內容小於其他頁面。粘性頁腳工作出現問題
我已經嘗試了許多資源/教程試圖讓一個棘手的頁腳工作。
我設法執行本教程以下是我的代碼與它去。我希望有人
任何人都可能建議CSS更改我的代碼來實現此功能。
<body>
<div id="wrapper">
<div id="header-wrap">
<div id="header"></div>
<div id="home-header"></div>
<div class="push"></div>
</div>
<div id="footer-wrap">
</div>
</div>
</body>
CSS
#footer-wrap
{
background: url("images/footer.jpg") repeat-x scroll center bottom transparent;
color: rgb(117, 139, 141);
height: 462px;
position: relative;
width: 100%;
}
#header-wrap
{
clear: both;
min-height: 100%;
margin-bottom: -462px;
}
#header-wrap:after
{
content:"";
display:block;
height:462px;
}
不是爲我工作。需要幫忙!
另外'推'沒有被使用。也許用它?
編輯
body {
height: 100%;
margin:0px
}
html
{
height: 100%;
margin: 0px;
}
#wrapper
{
min-height: auto !important;
min-height: 100%;
}
對不起肯定。我剛剛補充說。 –
然後我認爲問題在於你的頁腳在你的包裝內。 – naffiq
我把頁腳放在包裝紙外面。還是行不通。 –