Opacity (alpha transparency) in css is handled differently for all browsers, this would require four separate statements in the document css. One advantage is that they do not interfere, and to work with the four is no problem because we do not have to worry. The statements are:
opacity: 0.5; This is the "most important" one because it is the current standard in CSS. This statement works in Firefox, Safari, and Opera.
filter:alpha(opacity=50); This is for Internet Explorer
-moz-opacity:0.5; This is for old versions of the Mozilla browsers like Netscape Navigator.
-khtml-opacity: 0.5; Ths is for old versions of Safari (1.x)
Why does IE always have to make my life so difficult... Aargh! Thanks, this is just what I need to make it work.
--
“When everyone can tell you the truth, they lack reverence for you.” - Machiavelli
Web developer at your service. Current project: Annuities
Yes, you're right. Life would be easier without Explorer