您的位置:首页技术文章
文章详情页

带标题的表格怎么显示标题, 用h标签吗?

【字号: 日期:2022-10-29 16:32:48浏览:47作者:猪猪

问题描述

例如像这样的表, 标题怎么显示?带标题的表格怎么显示标题, 用h标签吗?

问题解答

回答1:

<html>

<body>

<table border="1"width="500px" height="500px" bgcolor="#ccc" bordercolor="red" cellspacing="0">

<caption>我的标题</caption>

<tr>

<td>a</td>

<td>b</td>

</tr>

</table>

</body>

</html>