Great code
For it to work in netscape you have to change it to a decimal...
-moz-opacity:0.5;
Quote:
|
Originally Posted by collyer_1
Could that code be adapted to work in a CSS file? So that all tables across my web-site can be semi-transparent.
|
You can add any css into a css file..
Just like this..
table {
-moz-opacity:0.5;
filter:Alpha(Opacity=50);
}
-James 
Last edited by Dark-Skys99 : 08-26-2004 at 12:43 AM.
|