Moin,
folgender Quelltext wird im FF korrekt dargestellt. Im IE8 werden die hinteren td's des ersten tr gestreckt. Die Vorgabe width:20px wird nicht eingehalten. Warum und wie kann man das berichtigen?
<table border=1>
<tr>
<td>
aaaaaaaaaaaaaaaaaa
</td>
<td style="width:20px;">
b
</td>
<td style="width:20px;">
b
</td>
<td style="width:20px;">
b
</td>
<td style="width:20px;">
b
</td>
</tr>
<tr>
<td colspan="5">
ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc
</td>
</tr>
</table>
Paul