Home   



Tabellen, Rahmen


<table>
Tabelleninhalt
</table>



<table border>
Tabelleninhalt mit Gitternetzlinien
</table>

<table border>
<tr> 1. Zeile
   <td> 1. Spalte </td>
   <td> 2. Spalte </td>
</tr>

<tr> 2. Zeile
   <td> 1. Spalte </td>
   <td> 2. Spalte </td>
</tr>
</table>



<table border="3"> Aussenrahmen hat eine Breite von 3 Pixeln
....
</table>


<table cellspacing="5"> cellspacing = Zellzwischenraum - Gitternetzliniendicke
....
</table>


<table cellpadding="5"> Textabstand zu den Gitternetzlinien bzw. zum Aussenrahmen
....
</table>


Tabellengröße

<table border width="60%" height="400">    width = Tabellenbreite,  height = Tabellenhöhe
....
</table>


<table border="1">
<tr>
   <td height"50"> 1. Zeile, 1. Spalte </td>
   <td width="250"> 1. Zeile, 2. Spalte </td>
</tr>
<tr>
   <td> 2. Zeile, 1. Spalte </td>
   <td> 2. Zeile, 2. Spalte </td>
</tr>
</table>