Skip to content

Instantly share code, notes, and snippets.

@soderalohastrom
Created June 22, 2014 01:23
Show Gist options
  • Save soderalohastrom/46a39373ceb0cbf4ce99 to your computer and use it in GitHub Desktop.
Save soderalohastrom/46a39373ceb0cbf4ce99 to your computer and use it in GitHub Desktop.
Opacity mixin with IE fallback
@mixin opacity($opacity) {
opacity: $opacity;
$opacity-ie: $opacity * 100;
filter: alpha(opacity=$opacity-ie); //IE8
}
// Usage:
.article-heading {
@include opacity(0.8);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment