Hallo.
Folgendes problem:
HTML:
CSS dazu:
#nav und #unten_mitte haben feste höhen.
Im firefox bekomme ich so in der mitte ein content-div das bei Bedarf scrollt.
Im IE leider nicht. Habe schon alles was mir so einfiel ausprobiert (paddings, margins etc..), aber der IE betseht ture darauf die Seite und das div zu vergrössern.
Fällt noch irgednjemandem etwas ein?
Folgendes problem:
HTML:
HTML:
<div id="spalte_mitte">
<div id="nav">
<span>
<!-- ###MENU### START-->
<!-- ###MENU### END-->
</span>
</div>
<div id="content">
<!-- ###CONTENT### START-->
<!-- ###CONTENT### END-->
</div>
<div id="unten_mitte"></div>
</div>
CSS dazu:
CSS:
html, body, div {
padding: 0px;
margin: 0px;
border-width: 0px;
background-color: #575757;
}
html, body, #aussen {
height: 100%;
}
#spalte_links, #spalte_mitte, #spalte_rechts{
position: absolute;
top: 0px;
bottom: 0px;
height: 100%;
}
#spalte_mitte{
left: 222px;
width: 650px
}
#content {
position: absolute;
top: 180px;
bottom: 100px;
width: 100%;
overflow: auto;
border: 2px solid red;
}
#nav und #unten_mitte haben feste höhen.
Im firefox bekomme ich so in der mitte ein content-div das bei Bedarf scrollt.
Im IE leider nicht. Habe schon alles was mir so einfiel ausprobiert (paddings, margins etc..), aber der IE betseht ture darauf die Seite und das div zu vergrössern.
Fällt noch irgednjemandem etwas ein?