表格spa
表格的基本結構
語法:
<table border="" width="" cellpadding="" cellspacing="">
<tr align="">
<td align=""></td>
<td></td>
</tr>
</table>
border: 邊框的寬度,單位是像素(缺省值是0)
width: 表格的寬度
能夠用百分比(表示該表格佔父標記的寬度),也能夠是絕對值
cellpadding: 單元格內容與單元格之間的空隙
cellspacing: 單元格與單元格之間的空隙
align: 水平對齊,值有"center","right","left"
不規則表格:
colspan: 跨列合併單元格
rowspan: 跨行合併單元格
valign: 垂直對齊,值有"top","middle","bottom"
表格的完整的結構:
語法:
<table>
<caption>表格的標題</caption>
<thead></thead>
<tfoot></tfoot>
<tbody></tbody>
</table>
thead,tfoot這兩個標記能夠不出現,若是出現,只出現一次
tbody能夠出現屢次,至少也要出現以此
caption只能出現一次或者不出現ci