0
什麼是創建頁腳div的正確方法,我通常使用下面的代碼來設置我的頁腳div,我想知道footer div是如何用行業標準明智地編碼的。我將如何設置頁腳,以便在內容填滿時它可以進入屏幕的底部。正確的(行業標準)設置頁腳的方法
這裏是我的HTML:
<div id="wrapper">
<div id="header"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
這裏是我的CSS:
html {
background:white;
height:100%;
}
#wrapper {
width:960px;
margin-right:auto;
margin-left:auto;
}
#header {
background:#000000;
min-height:30px;
}
#content {
background:orange;
min-height:500px;
padding:20px;
}
#footer {
clear:both;
background:black;
min-height:30px;
position:relative;
}
'業標準?'沒有聽說過。 – Praveen
那麼我的代碼是佈局HTML文檔的正確方法嗎? – chris