表格的基本元素<table></table> <tr>定义行标签</tr> <td>定义列标签</td> <th>表格内的表头单元格</th>
<thead>定义在thead下的标签不论在HTML代码中你放置在什么位置都会以表头形式显示</thead>
同理 <tbody></tbody> 以及<tfoot></tfoot>。 分别表示,表体,表脚。
<caption>表的标题</caption>
<colgroup>用来设置列的属性</colgroup> 通过style 中的background:white等来设置颜色。通过span 来设置显示哪一列或多列,通过<col>来占用一个占列符。
例:
<table border=1>
<tr>
<td>张三</td>
<td>李四</td>
<td>王五</td>
</tr>
<thead>
<tr>
<th>张三</th>
<th>李四</th>
<th>王五</th>
</tr>
</thead>
<tr>
<td>张三</td>
<td>李四</td>
<td>王五</td>
</tr>
</table>
时间: 2024-11-10 01:36:21