/ Published in: CSS
Expand |
Embed | Plain Text
.transparent_class { filter:alpha(opacity=50); /* ie */ -moz-opacity:0.5; /* old mozilla browser like netscape */ -khtml-opacity: 0.5; /* for really really old safari */ opacity: 0.5; /* css standard, currently it works in most modern browsers like firefox, */ }
Comments
Subscribe to comments
You need to login to post a comment.

Thanks for including comments! I've often wondered what the -moz and -khtml ones were for.