Moin Forum,
habe ein Problem mit einer Tabelle in der per Javascript einzelne Bilder getauscht werden. Das JS funktioniert auch problemlos aber die Tabelle in der die Bilder stecken hat jeweils nach einer Zeile einen Zwischenraum obwohl ich im HTML mit Border Cellspacing und Cellpadding alles auf 0 gesetzt habe. Jetzt habe ich noch zusaetzlich
table {
margin: 0 px;
padding: 0 px;
border: 0 px;
border-spacing: 0px;
}
ins stylesheet eingefügt aber es bringt nichts Der Browser ist FF3.5.3
Hat jemand eine Idee? Hier der text:
<table style="float: left; margin-right:10px;" width="300" height="345" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img name="Image7" border="0" src="img/map_nw.jpg" width="148" height="119"></td>
<td><img src="img/map_ne.jpg" width="152" height="119"></td>
</tr>
<tr>
<td><img src="img/map_mittew.jpg" width="148" height="80"></td>
<td><img name="Image8" border="0" src="img/map_mittee.jpg" width="152" height="80"></td>
</tr>
<tr>
<td><img src="img/map_sw.jpg" width="148" height="148"></td>
<td><img src="img/map_se.jpg" width="152" height="148"></td>
</tr>
</table>