Skip to content

Instantly share code, notes, and snippets.

@fieldoffice
Created July 23, 2014 08:57
Show Gist options
  • Save fieldoffice/4b3e323215bcca703a65 to your computer and use it in GitHub Desktop.
Save fieldoffice/4b3e323215bcca703a65 to your computer and use it in GitHub Desktop.
Sass Opacity Mixin
@mixin opacity($opacity) {
opacity: $opacity;
$opacity-ie: $opacity * 100;
filter: alpha(opacity=$opacity-ie); //IE8
}
.class {
@include opacity(0.6);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment