我想有一個增長的div,當你添加更多的內容,至少有視口的高度,並有一個頁眉和頁腳堅持頂部和底部。我想出了以下在IE7中正常工作,但在ff3.5中不起作用。在IE和FF中的相對和絕對定位
這是HTML(添加重複 '文本
的地段' 的main_body長出來的視口):
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>Testing 123</title>
<link rel="stylesheet" href="css/testing.css">
</head>
<body>
<div id="main_body">
<div id="header"></div>
<div id="content">
Lots of text<br>
</div>
<div id="footer"></div>
</div>
</body>
<html>
這是CSS:
* {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
border: none;
z-index: 10;
font-family: Arial;
font-size: 20px;
text-decoration: none;
text-align: left;
}
html, body {
height: 100%;
background-color: rgb(255, 255, 255);
}
#main_body {
position: relative;
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0px 20px 0px 20px;
}
#header {
position: absolute;
top: 20px;
left: 0px;
height: 50px;
width: 100%;
background-color: rgb(40, 40, 40);
}
#content {
margin: 80px 10px 50px 10px;
}
#footer {
position: absolute;
bottom: 20px;
left: 0px;
height: 20px;
width: 100%;
background-color: rgb(40, 40, 40);
}
我認爲這應該根據規格工作。它在IE中,但在ff3.5中沒有。求助。
編輯: 我發現(感謝Jeepstone)它,當我在#內容改變保證金以填充工作正常。
感謝您的鏈接Jeepstone!第一個解決了我的問題。 – jzp74 2010-01-22 13:30:31