Skip to content

Instantly share code, notes, and snippets.

@JoeNoPhoto
Created October 18, 2015 19:31
Show Gist options
  • Save JoeNoPhoto/006581e396da58ea9c83 to your computer and use it in GitHub Desktop.
Save JoeNoPhoto/006581e396da58ea9c83 to your computer and use it in GitHub Desktop.
Opacity Mixin
@mixin opacity($opacity) {
opacity: $opacity;
$opacity-ie: $opacity * 100;
filter: alpha(opacity=$opacity-ie); //IE8
}
// Usage
.image{
@include opacity(.8);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment