tryhtml_caption_align_css 在线代码实例
<table border="1">
<caption style="text-align:left">My savings</caption>
<tbody><tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</tbody></table>
<br>
<table border="1">
<caption style="caption-side:bottom">My savings</caption>
<tbody><tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</tbody></table>