Hej.
Jeg har lavet et script der ser således ud:
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Procyon IRC Network</title>
</head>
<body>
<center>
<div id="ramme">
<table border="0">
<tr><td>
<div id="toplogo"></div>
<div id="menu"></div>
<div id="text"></div>
</td></tr>
</table>
</div>
</center>
</body>
</html>
style.css:
body {
margin:auto;
background-color:gray;
}
#ramme {
width:800px;
height:auto;
background-color:red;
}
#toplogo {
width:800px;
height:150px;
background-color:yellow;
}
#menu {
width:200px;
height:500px;
float:left;
background-color:blue;
}
#text {
width:600px;
height:500px;
float:right;
background-color:white;
}
table {
border:0px;
}
Jeg bruger safari, og resultatet af disse scripts er, at der kommer en ca 0.1 cm stor rød (da #ramme'ns background-color er rød) linje rundt om de tre bokse indeni <table> tagget.
Nogen idé om hvorfor denne røde linje kommer?