55 lines
738 B
HTML
55 lines
738 B
HTML
<figure>
|
|
<table>
|
|
<thead>
|
|
<th>a</th><th>b</th><th>c</th>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>1</td><td>2</td><td>3</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<figcaption>
|
|
table with separator before and after header
|
|
</figcaption>
|
|
</figure>
|
|
<figure>
|
|
<table>
|
|
<thead>
|
|
<th>a</th><th>b</th><th>c</th>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>1</td><td>2</td><td>3</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<figcaption>
|
|
table with separator after header
|
|
</figcaption>
|
|
</figure>
|
|
<figure>
|
|
<table>
|
|
<tbody>
|
|
<tr></tr>
|
|
<tr>
|
|
<td>1</td><td>2</td><td>3</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<figcaption>
|
|
table without header (but separator before)
|
|
</figcaption>
|
|
</figure>
|
|
<figure>
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td>1</td><td>2</td><td>3</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<figcaption>
|
|
table without header
|
|
</figcaption>
|
|
</figure>
|