天天看點

HTML中

問題

我寫了個html網頁

<table bgcolor="#cccccc" align="center">
</table>      

但如果将bgcolor換成backgroud-color則無任何效果,不是很明白

原因

<tablestyle="background-color:red">
  <tr>
    <td>Hello World !</td>
  </tr>
</table>      
<table bgcolor="red">
  <tr>
    <td>Hello World !</td>
  </tr>
</table>