Grafik mit Link im Internet Explorer

Status
Nicht offen für weitere Antworten.

tommi13

Mitglied
Hallo,

folgendes Problem:
HTML:
<tr>
	<td valign="top">
		<img src="img/gfx/06_wm/wmtippspiel_entry_14.jpg" alt="" height="34" width="235">
	</td>
	<td colspan="3">
		<a href="http://www.studenta.de/index.php?p=login_reg&amp;lp=fussi_index">
		<img src="img/gfx/06_wm/wmtippspiel_entry_15.jpg" alt="" border="0" height="34" width="200">
		</a>
	</td>
	<td>
		<img src="img/gfx/06_wm/wmtippspiel_entry_16.jpg" alt="" height="34" width="245">
	</td>
</tr>
Sieht im Firefox auch ganz normal aus, allerdings meint der Internet Explorer den mittleren Tabellen Tag auf eine Höhe von 36 zu setzten, statt wie die andere auf 34.
Ich hab auch schon versucht jedem einzelnen Tag die Höhe einzustellen, aber im internet Explorer das einfach nicht...

Hier die Seite:
http://www.studenta.de/index.php?p=fussi_index

Thx 4 help
tommi
 
Entweder entfernst du die Leerzeichen bzw. Zeilenumbrüche (= Whitespaces) im HTML-Quelltext:

HTML:
<tr>
	<td valign="top"><img src="img/gfx/06_wm/wmtippspiel_entry_14.jpg" alt="" height="34" width="235"></td>
	<td colspan="3"><a href="http://www.studenta.de/index.php?p=login_reg&amp;lp=fussi_index"><img src="img/gfx/06_wm/wmtippspiel_entry_15.jpg" alt="" border="0" height="34" width="200"></a></td>
	<td><img src="img/gfx/06_wm/wmtippspiel_entry_16.jpg" alt="" height="34" width="245"></td>
</tr>
Oder du verwendest folgende CSS-Regel für die Grafiken:

Code:
img { display: block; }
 
Status
Nicht offen für weitere Antworten.
Zurück