Hallo,
weder der IE, noch der NC/Gecko nehmen das, egal ob class oder als Atribut im Tag
So geht's:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<body>
<table style="border-collapse:collapse; border-spacing:0;">
<tr><td>Erste Zeile</td><td>Ohne Rahmen</td></tr>
<tr style="border:5px solid red"> <td>Zweite Zeile</td><td>Mit Rahmen</td></tr>
<tr> <td>Dritte Zeile</td><td>Ohne Rahmen</td></tr>
</table>
</body>
</html>
Es liegt daran, dass man ausdruecklich sagen muss, dass
die Browser das Collapsing Border Model anwenden sollen:
<table style="border-collapse:collapse; border-spacing:0;">
Erklaerung: Siehe mein Posting von 9:46 h ([pref:t=77129&m=444827])
mfg,
Thomas