13.1 表格
<tr>
<th>外号</th>
<th>原名</th>
<th>特长</th>
<th>照片</th>
</tr>
<tr>
<th>美国队长</th>
<td>史蒂芬·罗杰斯</td>
<td>强化体格</td>
<td><img src="img/CaptainAmerica.jpg" alt="美国队长" width="300"></td>
</tr>
13.2 表格边框
<style>
table {
border: 1px solid black;
border-collapse: collapse;
}
th {
border: 1px solid red;
}
td {
border: 1px solid blue;
}
</style>
13.3 给表格加标题:caption
caption 元素需要紧挨着 table 元素的开始标签。
<table>
<caption>复仇者联盟主要成员技能表</caption>
...