表格样式
1. 表格属性
1.1 width
1.2 height
1.3 border
1.4 border-collapse
collapse
:设置表格的边框是否被折叠成一个单一的边框或隔开。
1.5 text-align
- 水平方向对齐方式。
- 值:
left
| center
| right
.
1.6 vertical-align
- 垂直方向对齐方式。
- 值:
top
| middle
| bottom
.
2. 表格示例代码
<table width="" height="" bgcolor="" border="" align="" cellpadding="" cellspacing="">
<caption align=""></caption>
<tr align="" valign="" bgcolor="">
<th></th>
<th></th>
</tr>
<tr>
<td rowspan="" colspan="" width="" height="" align="left|center|right" valign="top|middle|bottom" bgcolor=""></td>
<td></td>
</tr>
</table>