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;
}
すでにグーグルで検索しようとしましたが、問題に合った答えを見つけることができませんでした。この問題に精通していて、正しい解決策を知っている人はいますか?
前もって感謝します
ニック