11.4设置表格标题的位置

来源:互联网 发布:淘宝权回lgd 编辑:程序博客网 时间:2024/05/22 05:07

<html>
<head>
<style type="text/css">
caption
{
caption-side:bottom
}
</style>
</head>
<body>

<table border="1">
<caption>This is a caption</caption>
<tr>
<td>Adams</td>
<td>John</td>
</tr>
<tr>
<td>Bush</td>
<td>George</td>
</tr>
</table>

</body>
</html>
This is a captionAdamsJohnBushGeorge