Skip to content

Instantly share code, notes, and snippets.

@hectorpalmatellez
Forked from jgv/opacity.scss
Last active December 28, 2015 19:09
Show Gist options
  • Save hectorpalmatellez/7548260 to your computer and use it in GitHub Desktop.
Save hectorpalmatellez/7548260 to your computer and use it in GitHub Desktop.
@mixin hp-opacity($trans) {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=#{$trans * 100})";
filter: alpha(opactiy=($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