제가 테이블을 짜는데

배경색만 opacity 60이고 그 안에 담긴 레이어나 글씨는 또렷하게 (opacity 100) 하고싶은데요,

그렇게 안에 속성은 따로 주는 법은 없나요? ㅠ

 

배경이 흐려지면 그 안에 내용들도 다 흐려지더라구요 ;ㅅ;

 

 

-----------------------

 

첨부

 

<html>
<head>

<style>
<!--
body{background:url(bgimage.gif) no-repeat fixed left top #455d7f;}
table{border-collapse:collapse}
td.head1{background:000017; filter:Alpha(Opacity=60);}
td.head2{background:000017; filter:Alpha(Opacity=30);}
td.foot{background:e0e0e0; filter:Alpha(Opacity=30);}
div#logo{float;width:320; height=100;}
div#board{float;width:680; height=90%; margin:40px; background-color:white; backgroundAlpha:50;}


-->
</style>
</head>
<body>

<table width=950 height=100% border=1 align=center>

/* head */
<tr> <td class=head1 height=100 align=right colspan=2>
<div id=logo><img src=logos.gif></div>
 </td>
</tr>

<tr> <td class=head2 height=30 colspan=2>&nbsp;</td> </tr>


/* main body */
<tr>
<td>
 <div id=board></div>
</td>


/* side menu */
<td width=200> 메뉴 </td>
</tr>

/* 카피라이트 */

<tr>
<td class=foot height=30 colspan=2><center><font color=white>copyright</font></center></td>
</tr>

</body>
</html>