| Tabelle Aufbau 1 Zeile x 2 Zellen |
<table>
<tr>
<td>Datenzelle</td>
<td>Datenzelle</td>
</tr>
</table> |
<table>...</table> Tabellen-Tag <tr>...</tr> Tabellenzeilen-Tag <td>...</td> Tabellenzellen-Tag |
| Tabelle mit Kopfzeile 2 Zeilen x 3 Zellen |
<table>
<tr>
<th>Kopfzelle</th>
<th>Kopfzelle</th>
<th>Kopfzelle</th>
</tr>
<tr>
<td>Datenzelle</td>
<td>Datenzelle</td>
<td>Datenzelle</td>
</tr>
</table> |
<th>...</th> Kopfzeilen-Tag |
| Tabellen Rahmen und Abstände |
<table border=" ">...</table> <table cellpadding=" ">...</table> <table cellspacing=" ">...</table> |
border="[Pixel]" (Rahmendicke) cellpadding="[Pixel]" (Innenabstand Zelle) cellspacing="[Pixel]" (Gitternetzliniendicke) |
| Tabellen Teile und Netzlinien |
<thead>...</thead> <tbody>...</tbody> <tfoot>...</tfoot> | thead (Tabellenkopf) tbody (Tabellenkörper) tfoot (Tabellenfuss) |
| Tabellen Tabellenrahmen |
<table border frame=" ">...</table> | frame="[box/void/above/below/hsides/vsides/lhs/rhs]" (Regeln f. Tabellenrahmen) |
| Tabellen Breite und Höhe |
<table width=" " heigth=" ">...</table> | width="[Pixel/%]" (Breite der Tabelle) height="[Pixel/%]" (Höhe der Tabelle) |
| Tabellen Spaltenbreite |
<th width=" " >...</th> <td width=" " >...</td> |
width="[Pixel/%]" (Breite der Tabelle) height="[Pixel/%]" (Breite) |
| Tabellen Zeilenhöhe |
<th height=" " >...</th> <td height=" " >...</td> |
width="[Pixel/%]" (Breite der Tabelle) height="[Pixel/%]" (Höhe) |
| Tabellen Zelleninhalt ausrichten |
<tr align=" ">...</tr> <tr valign=" ">...</tr> <th align=" ">...</th> <th valign=" ">...</th> <td align=" ">...</td> <td valign=" ">...</td> |
align="[left/center/right]" (horizontal) valign="[top/middle/bottom]" (vertikal) |
| Tabellen Zellen verbinden |
<th colspan=" ">...</th> <td colspan=" ">...</td> <th rowspan=" ">...</th> <td rowspan=" ">...</td> |
colspan="[Spaltenanzahl]" (Spalten verbinden) rowspan="[Zeilenanzahl]" (Zeilen verbinden) |
| Tabellen Hintergrundfarbe |
<table bgcolor=" ">...</table> <tr bgcolor=" ">...</tr> <th bgcolor=" ">...</th> <td bgcolor=" " >...</td> |
bgcolor="[#XXXXXX/Farbname]" |
| Tabellen Rand- und Gitterfarbe |
<table bordercolor=" ">...</table> <table bordercolorlight=" ">...</table> <table bordercolordark=" ">...</table> |
bordercolor="[#XXXXXX/Farbname]" |
| Tabellen Hntergrundbild |
<table background=" ">...</table> <th background=" ">...</th> <td background=" ">...</td> |
background="datei.gif" |
| Tabellen Überschrift, Unterschrift |
<table> <caption align=" ">...</caption> </table> |
align="[top/bottom]" |
| Tabellen ausrichten Textfluss |
<table algin=" "> </table> |
align="[left/center/right]" |