表格的半透明显示效果

在<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>
原文地址:https://www.cnblogs.com/pyt5208/p/446579.html