Ich hätte eine Frage bezüglich der Navigation.
Welcher tabellenaufbau ist besser:
1. Vorschlag
Code: Alles auswählen
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td rowspan="2">Content</td>
</tr>
<tr>
<td>Hier das Menü</td>
</tr>
</table>
Code: Alles auswählen
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Menü</td>
<td>Content</td>
</tr>
</table>
Welche Varinate ist besser.
Das Menü besteht aus ca. 70 interne Links?