Thomas: Darstellungsprobleme zwischen den Browsern

Beitrag lesen

Hallo!

Ich habe auf meiner Webseite folgende Code, auch auf meiner Webseite einsehbar. In Opera und Mozilla Firefox wird unter dem Banner ein Abstand von 3px erzeugt, keine Ahnung wo der herkommt. Im IE ist alles OK. Sämtliche Abstände sind auf 0px gesetzt. Wie kann man dieses Problem lösen?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">

<head>

<style type="text/css">
 table, body, html, td, img {
 padding:0px;
 margin:0px;
}
</style>

</head>

<body>

<table border="1" style="width:750px" cellspacing="0" cellpadding="0" style="border-collapse: collapse" bordercolor="#000000">
 <tr>
  <td style="width:750px"><img src="2.GIF" width="748" height="60" alt="daniel-sommerfeldt.de - Online" /></td>
 </tr>
</table>

</body>

</html>