天天看點

表格的半透明顯示效果

在<head></head>之間加上如下代碼:

<style>

.alpha{filter: Alpha(Opacity=50)} //50表示50%的透明度

</style>

在<body></body>之間加上如下代碼:

<table border="1" width="100" height="62" class="alpha" bgcolor="#F2A664" >

 <tr>

  <td width="100%" height="62">

  <div align="center">很酷吧!</div>

  </td>

 </tr>

</table>