Stefan: Tabellenlinien mit CSS

Beitrag lesen

OK, der Firefox hat es mit der Breite einzelner Zellen nun mit folgendem Code verstanden:

--- html ---
<table>
    <tr class="oben">
        <td colspan="2">Oberes Fenster</td>
    </tr>
    <tr class="unten">
        <td class="eins">Men&uuml;</td>
        <td class="zwei">Inhalt</td>
    </tr>
</table>
--- /html ---

--- css ---
table {
    table-layout: fixed;
    border-width:2px;
    border-style: solid;
}

tr.oben {
    height:100px;
    width: 800px;
}

td {
    border-width:2px;
    border-style: solid;
}

td.eins {
    height:600px;
    border-width:2px;
    border-style: solid;
    width: 100px;
}

td.zwei {
    height:600px;
    border-width:2px;
    border-style: solid;
    width: 700px;
}
--- /css ---

Das Problem an der Sache ist, dass die Zellen im IE gleich gross dargestellt werden, sprich die width - Angaben ignoriert werden. Gibt es dafür eine Lösung mit CSS?

Danke, Stefan