我有兩個部分,左側的結果和右側的主要部分駐留在html> wrapper>容器中。高度不會達到100%
現在,這兩個高度都不是固定的,並希望它們根據其內容伸展到100%。在某些情況下,結果比主要更長,反之亦然。我已經使用了100%的高度,但它似乎並不奏效。請幫忙!
html, body {
margin: 0;
padding: 0;
height: 100%;
}
#wrapper {
min-height: 100%;
position: relative;
width: 100%;
}
#container {
width: 1007px;
padding: 130px 0 0 0;
display: block;
}
.results {
width: 383px;
float: left;
background:
#fff;
display: block;
-webkit-box-shadow: -2px 0px 8px -6px #000;
-moz-box-shadow: -2px 0px 8px -6px #000;
box-shadow: -2px 0px 8px -6px #000;
padding-bottom: 60px;
}
.main {
width: 606px;
float: left;
padding: 15px 0 0 16px;
position: relative;
background: url(images/pattern.png) repeat;
height: 100%;
bottom: 0px;
}
<html lang="en>
<head></head>
<body>
<div id="wrapper">
<div id="container" class="clear fix">
<section class="results">
</section>
<section class="main">
</section>
</div>
</div>
</body>
</html>
也發佈您的HTML。 – dfsq 2013-04-09 17:46:43
所以你想要兩列是相同的大小?如果是這樣,嘗試添加'overflow:auto'到'#Wrapper' – Justin 2013-04-09 17:47:33