Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chrisdempsey/a060fea8c535cce0e2925a93c21c42ca to your computer and use it in GitHub Desktop.
Save chrisdempsey/a060fea8c535cce0e2925a93c21c42ca to your computer and use it in GitHub Desktop.
css: cross browser opacity
selector {
-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