Ich habe eine Tabelle mit einer Grafik und dann der Rest ist aufgefüllt. Nun zeigt mir der IE immer einen weissen Rand an rechts. Firefox hingegen nicht.
Wie kann ich den IE dazu bringen, rechts keinen weissen Rand zu machen ?
PHP
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Unbenanntes Dokument</title>
</head>
<body topmargin=0 marginheight=0 leftmargin=0 marginwidth=0>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="sfheader_lowbg.jpg">[img]sfheader_low.jpg[/img]</td>
</tr>
</table>
<table width="100%" border="0" cellpadding="3" cellspacing="3">
<tr>
<td><table width="100%" height="500px" style="border:2px solid #336799;">
<tr>
<td valign="top">
<?php
if(isset($_GET['var'])) {
if($_GET['var']=="index") {
include "links.html";
}
if($_GET['var']=="news") {
include "news.html";
}
}
?>
</td>
</tr>
</table></td>
</tr>
</table>
</p>
<map name="Map">
<area shape="rect" coords="49,96,90,112" href="index.php?var=index">
<area shape="rect" coords="111,97,165,113" href="index.php?var=news">
</map>
</body>
</html>
Alles anzeigen