我試圖設計一個使用無表格佈局的網頁;但是,當涉及到頁面的高度時,我遇到了問題。我使用jquery手風琴來儘量減少頁面中滾動條的使用。但是,當我摺疊手風琴時,我正在經歷div的重疊。手風琴部分與頁面的底部邊緣重疊並與頁腳重疊。我如何自動調整頁面的高度,而不會與頁面中其他div的重疊。頁面佈局中的自動div高度調整
就好像你可以附加的圖像是我做的基本佈局。頁面的內容部分將被動態填充;所以我需要自動調整內容div的使用css
謝謝! Nhoyti alt text http://img13.imageshack.us/img13/9438/layoutfq.jpg
這裏是我所做的html代碼;你能幫我解決嗎?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<style type="text/css">
html, body
{
margin:0px;
padding:0px;
}
#pageholder
{
width:980px;
margin-left:auto;
margin-right:auto;
text-align:center;
border:solid 1px #000;
}
#header
{
width:978px;
height:120px;
border:solid 1px red;
text-align:center;
}
#navigation
{
width:200px;
height:720px;
margin:5px;
border:solid 1px cyan;
text-align:center;
}
#contents
{
width:700px;
height:720px;
margin:5px;
margin-left:270px;
margin-top:-724px;
border:solid 1px blue;
text-align:center;
}
#footer
{
width:970px;
height:50px;
border:solid 1px green;
text-align:center;
}
</style>
</head>
<body>
<div id="pageholder">
<div id="header">header</div>
<div id="navigation">navigation</div>
<div id="contents">contents</div>
<div id="footer">footer</div>
</div>
</body>
</html>