Fabian: Divs postitionieren

Beitrag lesen

Hi!

Schau doch einfach mal unter float nach in SelfHTML nach ...

Hab ich fleißig gemacht, aber der IE macht zicken und will den Div nicht benachbart darstellen:

CSS:
html,body {
 text-align:center;
 margin:0px;
 padding:0px;
 width:100%;
 background-color:#1C31D1;
 height:100%;
 font-weight:normal;
 font-size:11px;
 line-height:120%;
 font-family:Verdana,Helvetica,sans-serif;
 position:absolute;
}

div#gesamt {
 width:850px;
 margin: 0 auto;
}

div#kopf {
 width:600px;
 float:left;
}

div#haupt {
 width:600px;
 float:left;
 border:#8D898A;
 background-color:#77898D;
 border: 1px solid #C6C6C6;
}

div#navigation {
 width:600px;
 float:left;
 height:30px;
 background-color:#FFFF33;
}

div#inhalt {
 text-align:left;
 width:600px;
 float:left;
}

div#seite {
 text-align:left;
 width:250px;
 height:100%;
 margin:0px;
 float:left;
 background-color:#6371DF;
 border-color:#C6C6C6;
 border-style:solid;
 border-bottom-width:1px;
 border-top-width:1px;
 border-right-width:1px;
 border-left-width:0px;
}

HTML:
<BODY>
<DIV id=gesamt>
<DIV id=haupt>
<DIV id=kopf><IMG height=120 src="MDS-Dateien/01.gif" width=600> </DIV>
<DIV id=navigation>Navigation</DIV>
<DIV id=inhalt>
Bla
</DIV>
</DIV>
</DIV>
<DIV id=seite>
BLa</DIV>
<DIV></DIV></BODY>

Thx!!!!