Page 1 of 1

Filters for Netscape/Mozilla

PostPosted: Mon Aug 25, 2003 2:58 am
by altofran
Hi everyone,

I tried the Webdev style on my galleries, and customized it because some of the colors are really too dark. You can take a look at tiny changed I made at my root gallery (http://pbase.com/nacef).

The style is interesting because it gives opportunity to test some of the CSS styles features. However, I'd like to know if there are filters like 'Alpha Opacity' supported by Netscape/Mozilla or even Opera?

Thanks

PostPosted: Mon Aug 25, 2003 4:07 am
by srijith
A guy Porter Glendinning replied thus in the css-d mailing list
I don't believe there's anything for Opera, but Mozilla has implemented the opacity property from the CSS3 Working Draft as "-moz-opacity" for a while now, and AFAIK, will be implementing it without the "-moz" prefix in the relatively near future now that the Color Module has become a Candidate Recommendation.

The equivalent of your example
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
would be:

opacity: 0.75;

Or, for now:

-moz-opacity: 0.75;

Thanks! I'll try that!

PostPosted: Mon Aug 25, 2003 12:57 pm
by altofran
Thanks! I'll try that!