Stefan: Tabellenlinien mit CSS

Beitrag lesen

OK,

ich habe das ganze nun so gelöst:

--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;
    border-collapse:collapse;
    width: 90%;
}

tr.oben {
    height:100px;
}

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

}

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

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

Warum kann ich die Breite der Zellen nicht mit width: 75%; definieren? Gibt es irgendwo _detaillierte_ Informationen zur Gestaltung von Tabellen?

Danke, Stefan