我試圖居中頁面,然後使頁面高度達到100%。 我有一個名爲「內容」的div作爲HTML頁面中所有元素的父元素。 接下來我需要做什麼?我想遠離任何CSS黑客攻擊。 這是目前在IE7,但不是在Firefox 3.CSS - 使頁面居中 - 然後使頁面高度達到100%
編輯:我增加了身高:100%;到#content這是什麼使它在IE中工作。 Firefox仍然沒有解決。
我的樣式表到目前爲止是:
html, body
{
width: 100%;
height: 100%;
}
body
{
background-color: #000;
text-align: center;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
}
#content
{
position: relative;
text-align: left;
background-color: #fff;
margin-left: auto;
margin-right: auto;
margin-top: 0px;
width: 840px;
height: 100%;
padding: 0px 5px 5px 5px;
}
我在FF 3.0中看不到任何錯誤。你能提供更多細節嗎? – andyk 2008-12-17 04:38:57