Ich würd gern Tabellen ineinander verschachteln, bzw. explizit:
--------------------------
| ----- | ---------- |
| | | | | | |
| | | | | | |
| | | | | | |
| ----- | ---------- |
| | |
--------------------------
Also so in etwa; eine Haupttabelle in der zwei weitere Tabellen drin sind.
Allerdings will das hier nicht klappen:
<table align="center" width="885" border=2">
<tr>
<td width="500">
<table>
<tr>
<td>
Spalte links
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="385">
<table>
<tr>
<td>
Spalte rechts
</td>
</tr>
</table>
</td>
</tr>
</table>
Statt nebeneinander erscheinen die zwei Spalten untereinander.
Wo ist der Fehler? :(