/ Published in: CSS
URL: http://css-tricks.com/snippets/css/cross-browser-opacity/
Expand |
Embed | Plain Text
.transparent_class { /* IE 8 */ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; /* IE 5-7 */ filter: alpha(opacity=50); /* Netscape */ -moz-opacity: 0.5; /* Safari 1.x */ -khtml-opacity: 0.5; /* Modern browsers */ opacity: 0.5; }
You need to login to post a comment.
