Created
June 30, 2013 20:20
-
-
Save robbestad/5896711 to your computer and use it in GitHub Desktop.
CSS - opacity for ie6-7 & 8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//for ie6-7 | |
.see-through { | |
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); | |
} | |
// or | |
.see-through { | |
filter: alpha(opacity=80); | |
} | |
//for ie8 | |
.see-through { | |
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment