Skip to content

Instantly share code, notes, and snippets.

@lnpbk
Forked from jgv/opacity.scss
Last active December 28, 2015 07:29
Show Gist options
  • Save lnpbk/7464751 to your computer and use it in GitHub Desktop.
Save lnpbk/7464751 to your computer and use it in GitHub Desktop.
@mixin hp-opacity($trans) {
filter: alpha(opacity=($trans * 100));
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=#{$trans * 100})";
-moz-opacity: $trans;
-khtml-opacity: $trans;
opacity: $trans;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment