实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<html>
2
<body>
3
4
<table border="1">
5
  <tr>
6
    <th>Month</th>
7
    <th>Savings</th>
8
  </tr>
9
  <tr>
10
    <td bgcolor="#FF0000">January</td>
11
    <td bgcolor="#00FF00">$100</td>
12
  </tr>
13
</table>
14
15
<p><b>Tip:</b> To produce equal results in all browsers, always use hex code to specify colors.</p>
16
<p>The bgcolor attribute is deprecated in HTML 4, and is not supported in HTML5. Use CSS instead.</p>
17
18
</body>
19
</html>
20