I use "filter: Alpha(Opacity=20);" in the CSS code in my website. But when i tried to preview it on mozilla browsers such as firefox and seamonkey, it turns out that the effect is not visible.
are there anyway i can do to make the effect visible?
other browsers you should use opacity: value; where value is decimal figure
so for 20% opacity you need
HTML Code:
.opaque20 {
/*for other browsers*/
opacity:0.2;
/*IE specific */
filter: alpha(opacity=20);
}
You must give the element an explicit height and/or width as well in IE (or use position: absolute)
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?