表格的颜色:
在表格中,既可以对整个表格填入底色,也可以对任何一行、一个表元使用背景色。
表格的背景色彩 <table bgcolor=#>
行的背景色彩 <tr bgcolor=#>
表元的背景色彩 <th bgcolor=#>或 <td bgcolor=#>
#=rrggbb 16进制 RGB数码, 或者是下列预定义色彩名称:
Black:黑色, Olive:橄榄色, Teal:凫色, Red:大红色, Blue:蓝色, Maroon:栗色, Navy:深蓝色, Gray:灰色, Lime:浅绿色, Fuchsia:紫红色, white:白色, Green:绿色, Purple:紫色, Silver:水银色, Yellow:黄色, Aqua:水绿色/浅绿色(偏蓝)
举例:
<html>
<head>
<title><title>
</head>
<table border=2 bgcolor=aqua>
<tr>
<th bgcolor=ffaa00>彩电</th> <th bgcolor=Red>冰箱</th> <th rowspan=2>家电</th>
<tr bgcolor=yellow>
<td>A</td><td>B</td>
</table>
</body>
</html>
表格边框的色彩设置:<table bordercolor=#>
表格边框色彩亮度设置:<table bordercolorlight=#>
<table bordercolordark=#>
表格的分组显示:
按行分组:
<thead>...</thead>--------表的题头(Header)
<tbody>...</thbody>-------表的正文(Body)
<tfoot>...</tfoot>-----------表的脚注(Footer)
按列分组
<colgroup align=#> #=left, right, center
<col span=#> #=从左边数起,具有指定属性的列的列数
<col align=#> #=left, right, center
边框的显示:
显示所有边框:<table frame=box>
只显示上边框:<table frame=above>
只显示下边框:<table frame=below>
只显示上、下边框:<table frame=hsides>
只显示左、右边框:<table frame=vsides>
只显示左边框:<table frame=lhs>
只显示右边框:<table frame=rhs>
不显示任何边框:<table frame=void>
分隔线(Rules)的显示
显示所有分隔线:<table rules=all>
只显示组(Group)与组之间的分隔线(要和组标签搭配使用):
<table rules=groups>
只显示行与行之间的分隔线:<table rules=rows>
只显示列与列之间的分隔线:<table rules=cols>
不显示任何分隔线:<table rules=none>