Skip to content

Instantly share code, notes, and snippets.

@robbestad
Created June 30, 2013 20:20
Show Gist options
  • Save robbestad/5896711 to your computer and use it in GitHub Desktop.
Save robbestad/5896711 to your computer and use it in GitHub Desktop.
CSS - opacity for ie6-7 & 8
//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