Skip to content

Instantly share code, notes, and snippets.

@JoeNoPhoto
Created October 14, 2015 07:14
Show Gist options
  • Save JoeNoPhoto/805038d2a5f812a406f8 to your computer and use it in GitHub Desktop.
Save JoeNoPhoto/805038d2a5f812a406f8 to your computer and use it in GitHub Desktop.
Cross Browser Opacity
@mixin opacity($opacity) {
opacity: $opacity;
$opacity-ie: $opacity * 100;
filter: alpha(opacity=$opacity-ie); //IE8
}
@JoeNoPhoto
Copy link
Author

Usage

.faded-text {
  @include opacity(0.8);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment