背景画像と本体の別の背景画像を含む左の列があり、画面の残りの部分を埋めます。左側の列の右側にコンテンツ領域があり、ブラウザー ウィンドウを越えて垂直に伸びます。左の列を 100% の高さに設定すると、左の列の背景画像を下にスクロールすると、画面の元のサイズを超えて拡張されません。左の列をブラウザウィンドウの元の高さを超えて拡張し、コンテンツ領域に合わせる純粋な css の方法はありますか?
http://ophilium.com/test/test.html
html {
height: 100%;
}
body {
height: 100%;
background-image: url(../images/rightPanel.png);
background-repeat: repeat;
height: 100%;
}
#left {
background-repeat: repeat-y;
width: 207px;
padding: 10px;
float: left;
height: 100%;
background-image: url(../images/leftPanel.png);
}
#right {
height: 500px;
padding: 10px;
min-width: 773px;
float: left;
}
#container {
position: relative;
min-width: 1100px;
height: 100%;
background-repeat: repeat;
}