CSS Transparency Settings for All Browsers
November 16th, 2009
No comments
The transparency set to 50% for all browsers.
.transparent_text {
filter:alpha(opacity=50);
-moz-opacity:0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
- opacity: 0.5; This will work in most versions of Firefox, Safari, and Opera.
- filter:alpha(opacity=50); This will work in IE.
- -moz-opacity:0.5; This will work in Netscape Navigator.
- -khtml-opacity: 0.5; This will work in Safari (1.x)
Unique visitors to post: 0