HTML 参考手册
HTML <th> bgcolor 属性
给表头单元格添加背景颜色
源代码:
点击运行 »
<table border="1"> <tr> <th bgcolor="#FF0000">Month</th> <th bgcolor="#00FF00">Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> </table>
运行结果:
点击运行 »