, ;
-, : CSS IE, -, , . "IE Hack" ( #) , IE.
:
html
{
background:
}
, IE .
-, min-width min-height? ( โโIE6 , ) . () 100%, html body (, )
html, body {
width: 100% ;
height: 100% ;
min-width: 900px ;
min-height: 500px ;
}
, ( body) div (, ), .
, , , overflow html/body, . , , , .
, !
EDIT:
, !:]
, divs , ( , ):
<body>
<div id="page">
<div id="right">
<div class="thirty">Top bar</div>
<div class="tall">Middle bar</div>
<div id="rt_bot">Bottom bar</div>
</div>
<div id="left">
<div class="thirty">Left Top Bar</div>
<div class="tall">Left Mid Bar</div>
<div id="lf_bot">Left Bottom Bar</div>
</div>
<div id="container"></div>
</div>
</body>
CSS:
html, body {
width: 100% ;
height: 100% ;
min-height: 500px ;
min-width: 900px ;
margin: 0px ;
}
div#page {
height: 100% ;
}
div#right {
float: right ;
height: 100% ;
width: 300px ;
}
div#rt_bot {
height: 200px ;
}
div#left {
float: left ;
}
.thirty {
height: 30px ;
}
.tall {
height: 100% ;
}
div#lf_bot {
height: 50px ;
}