HTML教程-表格的颜色
时间:2007-02-17 来源:PHP爱好者
在表格中,既可以对整个表格填入底色,也可以对任何一行、一个表元使用背景色。 表格的背景色彩 <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>
php爱好者站 http://www.phpfans.net PHP|MySQL|javascript|ajax|html.
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>
php爱好者站 http://www.phpfans.net PHP|MySQL|javascript|ajax|html.
相关阅读 更多 +