On the other hand it is more complicated to edit tables than plain text. Therefor tables should only be used if
- they can really help to structure your article.
- you need to sort your content.
|
|||||||||||||
|
|||||||||||||
<table title="Tabellentitel" width="100%" border="0"> <tr> <th>First headline</th> <th>Second headline</th> <th>Third headline</th> </tr> <tr> <td>1. row, left</td> <td>1. row, middle</td> <td rowspan="2">complete right column</td> </tr> <tr> <td>2. row, left</td> <td>2. row, middle</td> </tr> <tr> <td colspan="3" align="center">complete lower row</td> </tr> </table>
Be sure to finish all <tr>, <th> and <td> with the corresponding </tr>, </th> und </td>.












