I am using opacity for my table but i dont want to apply that opacity in the div as i mentioned,how to achieve this?
<table class="popup" style="background-color:#898989;
width:99%; opacity:0.8;filter:alpha(opacity=80); >
<tr>
<td>
<div>i dont want to apply transparency here</div>
<td>
</tr>
</table>
by default its applying transparency throughout a table,which i dont want.
Note:i cant use RGBa as it is not compatible with IE7,8
thanks in advance.