<body bgcolor=red>
<table width=200 height=100 border=1>
<tr><td>透明的?</td></tr>
</table>

解决方案 »

  1.   

    <body bgcolor=red>
    <table width=200 height=100 bgcolor=blue border=1 style="filter:alpha(opacity=50)">
    <tr><td>透明的?</td></tr>
    </table>
      

  2.   

    不设置颜色就是透明的,你说带颜色和半透明的?
    <body bgcolor=buttonface>
    <table bgcolor=gray style="filter:alpha(opacity=10);"><td>hehe</td></table>
      

  3.   

    全透明不指定表格的背景色即可
    半透明使用filter:alpha(opacity=80)
      

  4.   

    不给表格指定bgcolor,它就是透明的-----------------------------
    千年精灵( Millennium Genius )
      

  5.   

    试试这个:
    <table width=200 height=50 border=1 rules="none">
    <tr><td>透明的?</td></tr>
    </table>