前端笔记1:html表格应用
<table></table>标签定义html表格
- table 表示表格
- tr 行
- td 标准单元格
- th 表头单元格(在前)
- border 表格边框
- width 表格宽度
<table border=3 width=500px align=center style=border-collapse:collapse;>
<tr align=center valign=top bgcolor=green>
<th>姓名</th>
<th>年龄</th>
<th>爱好</th>
</tr>
<tr align=center valign=top bgcolor=red>
<td>张辰龙</td>
<td>23岁</td>
<td>网络</td>
</tr>
</table>
colspan 横向合并
rowspan 纵向合并