Return to Snippet

Revision: 18179
at September 23, 2009 15:26 by paulgrenwood


Initial Code
.transparent_class {  
	filter:alpha(opacity=50);  
	-moz-opacity:0.5;  
	-khtml-opacity: 0.5;  
	opacity: 0.5;  
}

Initial URL


Initial Description
Though CSS3 standard includes the opacity property, but not every browser supports it, here’s the CSS trick for cross browser transparency.

Initial Title
Cross Browser Opacity

Initial Tags
css

Initial Language
CSS