1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
<p>Simple header</p>
<table>
<thead>
<tr>
<th>cell1</th>
<th>cell2</th>
</tr>
</thead>
<tbody>
<tr>
<td>cell3</td>
<td>cell4</td>
</tr>
</tbody>
</table>
<p>Full header</p>
<table>
<thead>
<tr>
<th>cell1</th>
<th>cell2</th>
</tr>
</thead>
<tbody>
<tr>
<td>cell3</td>
<td>cell4</td>
</tr>
</tbody>
</table>
<p>With alignment and superfluous alignment defs</p>
<table>
<thead>
<tr>
<th>default</th>
<th style="text-align: left">left</th>
<th style="text-align: center">center</th>
<th style="text-align: right">right</th>
<th>default</th>
</tr>
</thead>
<tbody>
<tr>
<td>cell1</td>
<td style="text-align: left">cell2</td>
<td style="text-align: center">cell3</td>
<td style="text-align: right">cell4</td>
<td>cell5</td>
</tr>
</tbody>
</table>
<p>With leading sep line</p>
<table>
<thead>
<tr>
<th>cell1</th>
<th>cell2</th>
</tr>
</thead>
<tbody>
<tr>
<td>cell3</td>
<td>cell4</td>
</tr>
</tbody>
</table>
<p>Multiple bodies</p>
<table>
<thead>
<tr>
<th style="text-align: center">cell1</th>
<th>cell2</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: center">cell3</td>
<td>cell4</td>
</tr>
</tbody>
<tbody>
<tr>
<td style="text-align: center">cell5</td>
<td>cell6</td>
</tr>
</tbody>
</table>
<p>Sep line with tab</p>
<table>
<thead>
<tr>
<th style="text-align: right">right</th>
<th style="text-align: center">center</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: right">cell1</td>
<td style="text-align: center">cell2</td>
</tr>
<tr>
<td style="text-align: right">cell3</td>
<td style="text-align: center">cell4</td>
</tr>
</tbody>
</table>
|