• Das Erstellen neuer Accounts wurde ausgesetzt. Bei berechtigtem Interesse bitte Kontaktaufnahme über die üblichen Wege. Beste Grüße der Admin

Ausrichtung von div im IE und FF: IE immer weißer Rand

cm256

New member
Hallo!

Ich habe ein Datei index.php welche zwei Dateien reinlädt: bildertop.html und navigation.html.

index.php:
PHP:
<style type="text/css">
<!--


        div#top, div#navigation {
        border: 0px;
        padding: 0px;
        margin: 0px;

         }

-->

</style>

</head>
<body>

<div id="top">
<?php include ("bildertop.html"); ?>
</div>

<div id="navigation">
<?php include ("navigation.html"); ?>
</div>

</body>

bildertop.html:
PHP:
<div style="margin-bottom: 0px">
<img src="bildtop.png" width="750" height="200" border="0" alt="Pinguin">
</div>

navigation.html:
PHP:
<table width="750" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="107" height="79" bgcolor="#FF6600"><div align="center">kontakt</div></td>
    <td width="107" bgcolor="#FF9900"><div align="center">ich über mich</div></td>
    <td width="107" bgcolor="#FFCC00"><div align="center">aktuelles</div></td>
    <td width="107" bgcolor="#FFFF00"><div align="center">ergebnisse</div></td>
    <td width="107" bgcolor="#FFCC00"><div align="center">trainer</div></td>
    <td width="107" bgcolor="#FF9900"><div align="center">sponsoren</div></td>
    <td width="108" bgcolor="#FF3300"><div align="center"></div></td>
  </tr>
</table>

Leider wird im Internet-Explorer IMMER ein weißer Rand zwischen Bild und Tabelle angezeigt, was im Firefox nicht der Fall ist...

:icon8:
 
Zurück
Oben