<table>
<caption>title</caption> 标题
<thead>
<tr> 行
<th>a</th> 列名
<th>b</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td> 单元值
<td>2</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>1</td> 单元值
<td>2</td>
</tr>
</tfoot>
</table>
<th>表示标题名,以加粗居中形式体现在单元格中,加入scope属性可表示这是行标题还是列标题scope="col" scope="row"
跨列单元格,可在<th>或<td>元素中用colspan特性来表明单元格所要跨越的列数colspan="3",跨列为rowspan="2"
1.caption-side:bottom; 标题移到表格下方
2.border-spacing 把两个单元格边框之间的距离叫做边框间距
border-spacing:10px 30px;
水平10 垂直30
3.border-collapse: collapse; 边框折叠
4.nth-child 伪类
p:nth-child(even) {background-color:red;}偶数行
p:nth-child(odd) {background-color:green;}奇数行
p:nth-child(2n){}偶数行
p:nth-child(2n+1){}奇数行
5.<td rowspan=“2”>aaa</td> 占两列
colspan=“2”
6.表格中可以嵌套另一个表格