Stefan Sturm: Problem mit empty-cells:show

Beitrag lesen

Hallo,

ich habe ein Problem mit CSS. Die Angabe empty-cells:show wird vom IE ignoriert. Die Version des IE ist 6.0.280xxx. Auch das Beispiel das in selfhtml angegeben ist wird nicht korrekt angezeigt. Zur Vollständigkeit habe ich das Beispiel hier reinkopiert:

<html><head><title>empty-cells</title>
<style>
td { border:1px solid black; }
</style>
</head><body bgcolor="FFFFFF" text="#000000">

<h2>Tabelle 1</h2>
<table style="border:1px solid black; empty-cells:show"><tr>
<td>Inhalt</td><td>Inhalt</td><td></td>
</tr></table>

<h2>Tabelle 2</h2>
<table style="border:1px solid black; empty-cells:hide"><tr>
<td>Inhalt</td><td>Inhalt</td><td></td>
</tr></table>

</body></html>

Beide Tabellen werden vollkommen identisch dargestellt. Hat jemand eine Ahnung woran das liegt?

Danke

Stefan