Hallo, ich habe eine PHP Datei mit folgendem Body
<body>
<div id="container">
<? echo $this->partial('_header.phtml') ?>
<?php echo $this->layout()->content ?>
<? echo $this->partial('_footer.phtml') ?>
</div>
</body>
body {
text-align: center;
color:#555;
font-family: Lucida Grande, Verdana, sans-serif;
font-size: 11px;
z-index:1;
background-color: #eee;
margin:0;
}
#container {
margin: 0 auto;
padding: 10px;
text-align: left;
width: 875px;
background-color: white;
min-height:600px;
}
Eigentlich müsste kein Abstand oben zwischen Body und Container sein.
Trotzdem macht mir Firefox ca. 10 Pixel dazwischen, Safari interpretiert es richtig.
Wie bekomme ich diesen Abstand oben weg?