Any Css Geek In Here?
I'm learning CSS and I'm running into this problem with the opacity property. I'm testing this property and when looking at my test page with Firefox the background does display properly (transparent), but when looking at it in IE7 the background is just plain white, with no transparency. The page has internal CSS and the property goes like this
filter:Alpha(opacity=60); -----FOR IE
opacity:0.6; ------------------CSS STANDARD
-moz-opacity:0.6; ------------FOR FIREFOX
So I was wondering what I'm doing wrong, or is there another property to display transparent backgrounds with CSS in IE?
TEST PAGE
Thanks
filter:Alpha(opacity=60); -----FOR IE
opacity:0.6; ------------------CSS STANDARD
-moz-opacity:0.6; ------------FOR FIREFOX
So I was wondering what I'm doing wrong, or is there another property to display transparent backgrounds with CSS in IE?
TEST PAGE
Thanks
filter:alpha(opacity=70);
is the only way i've ever seen it work. you probably are missing a semicolon or something stupid in another place in the code.
i hate how different browsers render things differently. it's so stupid.
is the only way i've ever seen it work. you probably are missing a semicolon or something stupid in another place in the code.
i hate how different browsers render things differently. it's so stupid.



