How would I make a table have a semi-transparent background, but one of the cells have a fully opaque background?
I know you can do it in ie:
How would I change that code to work in other browsers?
I know you can do it in ie:
Code:
<table height="200" width="200" bgcolor="#FF0000" style="filter: alpha (opacity=50);">
<tr>
<td style="position: relative;">Woo! Opaque!</td>
</tr>
<tr>
<td>Woo! 50% Opaque!</td>
</tr>
</table>
How would I change that code to work in other browsers?







