tables:simple
Simple tables consists of lines of cells separated by | (vertical bar).
| Xilize markup | browser rendering | |||||||||
|
Simple table: | cell 11 | cell 12 | cell 13 | cell 21 | cell 22 | cell 23 | cell 31 | cell 32 | cell 33 |
Simple table:
|
XHTML generated
<p>Simple table:</p>
<table>
<tbody>
<tr>
<td>cell 11</td>
<td>cell 12</td>
<td>cell 13</td>
</tr>
<tr>
<td>cell 21</td>
<td>cell 22</td>
<td>cell 23</td>
</tr>
<tr>
<td>cell 31</td>
<td>cell 32</td>
<td>cell 33</td>
</tr>
</tbody>
</table>