多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
**表格标题:caption** 定义和用法: | 标签 | 名称 | 类型 | 同级标签 | 父级标签 | | --- | --- | --- | --- | --- | | \<caption>\</caption> | 表格标题标签 | 双标签 | \<thead>\</thead>、\<tbody>\</tbody> | \<table>\</table> | ``` <table border="1" width="300" height="100" align="center" cellspacing="0" style="margin-top: 100px;"> <caption>演员信息</caption> <!-- 表格标题 --> <thead> <!-- 头部 start --> <tr> <th>姓名</th> <th>性别</th> <th>年龄</th> </tr> </thead> <!-- 头部 end --> <tbody> <!-- 主体 start --> <tr> <td>刘德华</td> <td>男</td> <td>55</td> </tr> <tr> <td>张学友</td> <td>男</td> <td>55</td> </tr> <tr> <td>张学友</td> <td>男</td> <td>55</td> </tr> </tbody> <!-- 主体 end --> </table> ``` ![](https://img.kancloud.cn/e0/b6/e0b6210a8b3c7b5e6965394bd3188116_534x253.png)