Could someone show me a link that will help me learn FireFox filters for images?
I have learned how to make opacity filters with fire fox, but that is it.
Edit: And one for netscape (if this is possible)Firefox, Netscape, and other Mozilla browsers don't have filters like IE. They do support opacity and/or -moz-opacity, but nothing else like IE's filters.
What is it you want to do?Oh, Ok thanks.As far as I know Opera is the only one that do not support Opacity/Alpha filter.
not counting older browsers.
this is the way how to use is on cross-browsers:
FILTER: alpha(opacity=10);
moz-opacity: 0.1;
opacity: 0.1;
khtml-opacity: 0.1; --> for min. opacity
FILTER: alpha(opacity=100);
moz-opacity: 1.0;
opacity: 1.0;
khtml-opacity: 1.0; --> for max. opacity
I have learned how to make opacity filters with fire fox, but that is it.
Edit: And one for netscape (if this is possible)Firefox, Netscape, and other Mozilla browsers don't have filters like IE. They do support opacity and/or -moz-opacity, but nothing else like IE's filters.
What is it you want to do?Oh, Ok thanks.As far as I know Opera is the only one that do not support Opacity/Alpha filter.
not counting older browsers.
this is the way how to use is on cross-browsers:
FILTER: alpha(opacity=10);
moz-opacity: 0.1;
opacity: 0.1;
khtml-opacity: 0.1; --> for min. opacity
FILTER: alpha(opacity=100);
moz-opacity: 1.0;
opacity: 1.0;
khtml-opacity: 1.0; --> for max. opacity