我的 min-height 和 height 属性有问题。
http://nickhellemans.be/nick/testing/
当内容大于 100% 时,蓝色列不会直到页面末尾。(全屏)
HTML
<div id="wrapper">
<section id="sidebar">
test
</section>
<section class="contentViewer">
content goes here
</section>
</div>
CSS
body, html {
height:100%;
}
#wrapper {
width:100%;
height:100%;
}
section#sidebar {
float:left;
width:300px;
min-height:100%;
height: auto !important;
margin: auto;
background-color: blue;
overflow: hidden;
}
section.contentViewer {
height:auto;
position:absolute;
top:0;
right:0;
left:300px;
font-family: "brandon";
font-size:18pt;
}
我已经尝试用谷歌搜索它,但我无法找到适合该问题的答案。熟悉这个问题并知道正确解决方案的人吗?
提前致谢
缺口