tyrant1969
Programmer
I have the following styles defined on my page:
They're used to make the background color of a table transparent, but it also turns the text transparent so I use the remove_filter2 it allows the text to be solid.
Here's the code example...
This works great in IE, but works partially in FireFox - the text does not return to solidity.
Any ideas?
Code:
<STYLE TYPE='text/css'>
.transparent2 {filter:Alpha(Opacity=50); -moz-opacity:0.5; -khtml-opacity:0.5; opacity: 0.5;}
.remove_filter2 {position : relative; filter:Alpha(Opacity=100); -moz-opacity:1.00; -khtml-opacity:1.00; opacity: 1.00;}
</style>
They're used to make the background color of a table transparent, but it also turns the text transparent so I use the remove_filter2 it allows the text to be solid.
Here's the code example...
Code:
<table align="center" border="1" class="transparent2" bgcolor="blue">
<tr>
<td><div class="remove_filter2">Solid Text</div></td>
</tr>
</table>
This works great in IE, but works partially in FireFox - the text does not return to solidity.
Any ideas?