Skip to content

Instantly share code, notes, and snippets.

@Quinten
Created June 10, 2013 12:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Quinten/5748447 to your computer and use it in GitHub Desktop.
Save Quinten/5748447 to your computer and use it in GitHub Desktop.
cross-browser opacity
#element {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
filter: alpha(opacity=30);
-moz-opacity: 0.3;
-khtml-opacity: 0.3;
opacity: 0.3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment