Ich hab ein 2spaltiges Layout, das von der Breite her komplett variabel sein soll. Rechts soll eine Navigation erscheinen und links ein Bild das zentriert ist... Im IE siehts genau so aus wie ich mir das vorstelle, nur Mozilla meckert...
Kann mir da vielleicht jemand auf die Sprünge helfen?
<html><head></head><body>
<div style='text-align: center'>
<div style="width: 80%; margin: auto; background-color: #eee; text-align: left;">
<div style="width: 30%; background-color: #aaa; float: right;">
Navi
</div>
<div style="background-color: #555; text-align: center;">
<div style="margin: auto; width: 50%; background-color: #ff0000;">
<img src=''/>
</div>
</div>
<br style="clear: both;">
</div>
</div>
</body></html>