Return to Snippet

Revision: 39002
at January 11, 2011 22:04 by blueocto


Initial Code
filter:alpha(opacity=75); /* for internet explorer */
opacity: 0.75; /* CSS3 standard */
-moz-opacity:0.75; /* for older gecko browsers */
-khtml-opacity: 0.75; /* for older webkit browsers */

Initial URL
http://www.electrictoolbox.com/cross-browser-transparency/

Initial Description
The CSS3 standard introduces the opacity property for making elements opaque or transparent. Older browser also have support for opacity using various other properties and, in the case of Internet Explorer, filters. This post looks at how to achieve cross-browser, and backward compatible transparency.

Initial Title
Cross Browser Transparency

Initial Tags


Initial Language
CSS