I got some cross browser transparency to work with a Table bg, but now im getting problems with text that appear within that Td cell.
Here is my css:
Code:
#submenu {
background-color: #FFFFFF;
height: 150px;
width: 301px;
/* Mozilla ignores the following */
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40);
-moz-opacity: 0.40;
}
And here is the table:
Code:
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><div id="submenu">foo foo foo
</div></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
So, the word FOO now has the opacity of 40% along with the table bg. How can I have it so that the Opacity of the text (or any other element) is not affected by the CSS?