Hallo, ich habe ein eigentlich einfaches Problem, weiss aber trotzdem nicht wo das Problem liegt:
td mit der class="oben" ist 91px hoch. Wenn ich dort ein Foto, welches auch genau 91px hoch ist einfüge, dann erhöht sich die Höhe von td class="oben" und td class="rechts" um ca. 3px von selber, also sichtbar, wenn man diese td farblich hinterlegt. Das Problem tritt in allen Browsern auf ... Hat da jemand ne Idee? Vielen Dank.
Code:
td {padding:0px;}
img {
border:0px solid;
margin:0px 0px 0px 0px;
padding:0px 0px 0px 0px;
}
.oben {height:91px;}
.unten {height:509px;}
.rechts {height:600px;}
<table border="0" cellspacing="0">
<tr>
<td class="oben"><img src="xy.jpg"></td>
<td rowspan="2" class="rechts"><img src="yz.jpg"></td>
</tr>
<tr>
<td class="unten"> </td>
</tr>
</table>