该属性用于设置表格的标题位置
。
<!-- caption-side 有两个属性值 top | bottom -->
<!-- caption-side:top | 默认值 -->
<!-- caption-side:bottom | 设置表格标题在底部显示 -->
<table>
<caption style="caption-side:bottom;">letter</caption> <!-- 表格的大标题 -->
<tr>
<td>one</td><td>two</td>
</tr>
<tr>
<td>three</td><td>four</td>
</tr>
</table>
显示效果
one | two |
three | four |