Hallo,
wenn ich in css wie folgt ein zweispaltiges Layout realisiere, stellt der Firefox leider beide Spalten mit einem Abstand von 75px von oben dar, der IE nicht. Mache ich einen Fehler?
<html>
<head>
<title>Test</title>
<meta name="author" content="Jens">
<style type="text/css">
div.links { float:left; width:375px; margin-left:50px; }
div.rechts { width:375px; margin-left:449px; margin-top:75px; }
</style>
</head>
<body>
<div class="links">links</div>
<div class="rechts">rechts</div>
</body>
</html>
Dank & Gruß
Jens