Skip to content

Instantly share code, notes, and snippets.

@schalkburger
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schalkburger/0ae4078bb02135777797 to your computer and use it in GitHub Desktop.
Save schalkburger/0ae4078bb02135777797 to your computer and use it in GitHub Desktop.
CSS Cross-browser opacity
.opacity {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50);
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment