有什麼辦法可以防止main_wrapper重疊頁腳?頁腳必須保持並且位置:絕對,以便它保持在瀏覽器底部刷新。div覆蓋定位?
#page_contain {
min-height: 100%;
position: relative;
}
#main_wrapper {
width: 950px;
height: 800px;
margin: 0 auto 25px auto;
position: relative;
border: 1px solid #000;
}
#footer {
position:absolute;
bottom: 0;
width: 100%;
height: 60px;
text-align: center;
font-family: Verdana;
}
HTML
<div id="page_contain"></div>
<div id="main_wrapper"></div>
<div id="footer">
line 1 <br />
line 2 <br />
line 2 <br />
line 2 <br />
line 2 <br />
line 2 <br />
</div>
我真的覺得一個人必須要看到HTML來回答這個問題。 –
@RichardJPLeGuen不是,他們只是div的div的內容應該不重要。這個問題可以用3個空的div與設置ID的 – acctman
複製好,但它們在HTML文檔中的位置?哪一個是第一個還是第二個或最後一個?是否還有其他非靜態定位元素? –