1.基本格式:
<table>
<tr> <th>A</th><th>B</th><th>C</th><th>D</th> </tr>
<tr><td>第一列</td><td>第二列</td><td>第三列</td><td>第四列</td></tr>
</table>
注:table有以下属性:
border:设置表格的边线,默认为0,即无边线。
cellspacing:设置框线宽度,默认为2。
cellpadding:设置文字与框线的距离。
width:长度,单位为px或者百分比。
height:高度,单位为px或者百分比。
align:left、center、right;设置表格往哪边靠。
background:表格背景
bgcolor:表格背景颜色
bordercolor:边框颜色
bordercolorlight:边框亮色
bordercolordark:边框暗色
2.表格的边框设置
frame:设置边框线,默认为box或border。
rules:设置内格线,默认为all,可设置为rows、cols、none等。
3.tr、th、td的属性
注:tr不能设置width,但可以设置height、bgcolor等。
4.表格的结构化、直列化
结构化:thead、tfoot、colspan、align等。
直列化:<colspan>...</colspan>,重要属性有span来控制列数
个别直列化:<col>...</col>,可以控制个别列的属性
5.嵌套表格
现在用的很少了...