【问题标题】:I want to Add a table caption in html我想在 html 中添加表格标题
【发布时间】:2021-06-07 20:38:55
【问题描述】:

以下是用于创建基本表格的代码,我想使用任何名称显示表格的标题。

 <table>
    <tr>
    <th>name</th>
    <th>age</th>
    </tr>
    <tr>
   <td>mark</td>
   <td>23</td>
    </tr>
</table>

【问题讨论】:

    标签: html html-table


    【解决方案1】:

    这就是答案。

    <table>
    <caption>Table Caption</caption>
    <tr>
    <th>Name</th>
    <th>Age</th>
    </tr>
    <tr>
    <td>mark</td>
    <td>23</td>
    </tr>
    </table>
    

    【讨论】:

      猜你喜欢
      • 2017-10-09
      • 2017-04-16
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2022-11-06
      • 2020-12-22
      • 1970-01-01
      • 2018-02-21
      相关资源
      最近更新 更多