hab jetzt das CSS ohne position:fixed und der div Container "content" verhält sich schon einmal wie gewünscht. Aber der div Container "nbar" geht leider noch nicht bis zum unteren Scrollrand, wenn der div Container "fxt" eine Scrollleiste benötigt.
* {margin: 0;padding: 0; border: 0px;}
body {
font-size: 14px;
font-family:Tahoma;
width:100%;
height:100%;
}
#wrapper
{
position:absolute;
top:0px;
left:0px;
width:100%;
height:100%;
background:#fff;
}
.menu
{
position:absolute;
top: 0px;
left: 0px;
height:99px;
width:100%;
background:#aaa;
}
#content
{
position:absolute;
top:109px;
left:0px;
bottom:0px;
width:100%;
background:#dcdcdc;
overflow:auto;
}
#nbar
{
float:left;
height:100%;
}
#nb_open
{
width:50px;
border:1px solid black;
position:relative;
top:0px;
left:0px;
height:100%;
}
#fxt
{
margin-left:70px;
min-height:100%;
background:#aaa;
border:1px solid black;
}