Hellihello Martin,
http://de.selfhtml.org/html/tabellen/aufbau.htm#vordefinieren
Na, hilft das hier?
geht sowas:
<td>
<span class="special_cells">
<td class="special_cell-a">
<td class="special_cell-a">
</span>
<td>?
Und auch http://de.selfhtml.org/html/referenz/elemente.htm#td.
Das geht nicht, weil td nur innerhalb von tr vorkommen darf. Du kannst aber komplette Tabellen in Zellen packen. Vielleicht käme bei dir in Frage:
<table>
<tr>
<td><table>...</table></td>
<td><table>...</table></td>
<td><table>...</table></td>
</tr>
</table>
Dank und Gruß,