Ich habe eine Grafik in einer Zelle und dann den Rest mit Background aufgefüllt. Nun zeigt mir den IE rechts einen unschönen Rand an, ich möchte aber die Background-Grafik durchgehend (ist nur ein schmaler Streifen). was kann ich machen ?
Code:
<!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>