100%的股利高度我有一個兩分欄佈局:沒有滾動條
<html>
<head></head>
<body>
<div id="container">
<div id="header"></div>
<div id="sidewrapper"></div>
<div id="contentwrapper"></div>
</div>
</body>
</html>
我想有兩個側邊欄和內容100%的高度,但最頂級的容器的最小高度應爲100%。
我試着用下面的CSS來解決這個問題:
* {
margin: 0;
padding: 0;
}
html {
font-family: Georgia, serif;
color: #000; height:100%; min-height:100px;
}
body {
background: #fff; height:100%; min-height:100px; overflow:hidden;
}
#header {
width: 100%;
position: relative;
float: left;
height: 23px;
}
#container {
position:relative;
width: 100%; height:100%;
margin: auto; background:blue;
}
#contentwrapper {
float:left;
background:red;
position: relative;
width: 700px; padding:0px; margin:0px;
height: auto;
}
#sidewrapper {
float:left;
position: relative;
width: 159px; height:100%;
padding:0px; margin:0px;
}
...但我得到的,因爲頭的23像素高度的滾動條。我試圖用溢出來解決它:爲body元素隱藏,但我不知道這是否是正確的解決方案。
任何想法?
您的演示代碼中存在一些錯誤。我猜#sidewrapper其實是#sidebar,#contentwrapper其實是#content? – Gidon 2010-11-25 08:24:56
對不起,我更新了我的代碼 – 2010-11-25 08:30:45