欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

表格标签 table

程序员文章站 2022-04-29 11:04:05
...

创建表格

<table>		表格标签
<tr>		行标签
<td></td>	单元格标签
</tr>
</table>

tr下只能放td标签 ,td下可以放其他标签

表格属性

表格标签 table

表头标签

<table>		表格标签
<tr>		行标签
<th></th>	表头标签
</tr>
<tr>		行标签
<td></td>	单元格标签
</tr>
</table>

表格结构

表头,主体

<table>		表格标签
<thead>
<tr>		行标签
<th></th>	表头标签
</tr>
</thead>
<tbody>
<tr>		行标签
<td></td>	单元格标签
</tr>
</tbody>
</table>

表格标题

Caption

<table>
<caption></caption>
<tr></tr>
</table>

合并单元格

跨行合并,rowspan
跨列合并,colspan

<table>		表格标签
<thead>
<tr>		行标签
<th></th>	表头标签
</tr>
</thead>
<tbody>
<tr>		行标签
<td></td>	单元格标签
<td colspan=“2”>跨列合并之后的单元格</td> 
</tr>
</tbody>
</table>
相关标签: html 基础