0
我試圖在頁面內容頁面高度增加時將頁腳向下推。但我無法做到這一點。頁腳始終貼着側欄。因爲這是我的內容頁面溢出頁腳。頁腳不會隨着內容高度的增加而向下移動
我的CSS代碼如下:
#header
{
height: 150px;
background-color: #375BB0;
}
#nav
{
**strong text**height: 100%;
width: 231px;
float: left;
}
#nav2
{
height: 100%;
width: 250px;
float: right;
}
#content
{
height: 100%;
bottom: 0;
}
#footer
{
clear: both;
height: 50px;
background-color: #CCCCCC;
color: #333333;
text-align: center;
}
我的標記代碼:
<body>
<form id="form1" runat="server">
<div>
<div id="header">
</div>
<div id="nav">
<table class="style1" style="width: 100%; position: static ;" >
</table>
</div>
<div id="nav2">
<table style="border: 1px solid #000066; width: 100%; position: static;background-color:#9DAFD8;" >
</table>
</div>
<div id="content">
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
<div id="footer" style="clear: both; height:500px;" >
Copy rihgt @ xyzoman.com
</div>
</div>
</form>
請幫我
我想你的code.But仍無法工作的頁腳會up.Thank你的你的迴應 – FaisalThayyil
我很抱歉,但我在3個瀏覽器嘗試這樣做,它工作得很好,我用這個詞上面寫的確切代碼換句話說,它的作品。如果它不工作,那麼上面沒有任何東西導致它。我會考慮像你可能在這篇文章中遺漏的其他div一樣,還有什麼其他div。我也會確保你在頂部有適當的文檔類型。 –
你想要你的頁腳? –