如何在表格底部添加标题?
我有一个表格,其标题出现在表格顶部。
我需要另一个标题出现在表格底部。怎么可能呢?
<table>
<caption>My Table - Start</caption>
<tbody></tbody>
<tfooter></tfooter>
<caption>My Table - End</caption>
</table>
I have a table which has a caption which appears on top of the table.
I'd need another caption to appear at the bottom of the table. how would it be possible?
<table>
<caption>My Table - Start</caption>
<tbody></tbody>
<tfooter></tfooter>
<caption>My Table - End</caption>
</table>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该将 在表格顶部, 正下方标签。然后你可以使用 CSS:
将其置于表格下方。正如前人所写,每个表只有一个标题。如果您需要表格标题,请使用 或者将标题放在表格外部并使用 CSS 将其正确定位。
You should put the <caption> at the top of the table, right below the <table> tag. Then you can use the CSS:
to get it below the table. And only one caption per table as a previous person wrote. If you need a table title, then either use <th> or put a heading outside the table and use CSS to position it correctly.
您可以通过执行以下操作并应用一些 CSS
这是一个示例
You could mock one by doing the following, and applying some CSS
Here's an example
我相信每个表格只能有 1 个标题,并且它必须出现在表格标签之后。
您可以在表格后面添加一个 div 并将标题放在那里。
I believe you can only have 1 caption per table and it must appear after the table tag.
You could add a div right after the table and put your caption there.