Skip to content

Instantly share code, notes, and snippets.

@stormwarning
Created January 17, 2014 23:36
Show Gist options
  • Save stormwarning/8483691 to your computer and use it in GitHub Desktop.
Save stormwarning/8483691 to your computer and use it in GitHub Desktop.
Easy cross-browser opacity.
/**
* Cross-browser opacity.
*
* 1. Even IE8
*
* Usage:
*
@include opacity(0.8);
*
*/
@mixin opacity($opacity) {
opacity: $opacity;
$opacity-ie: $opacity * 100;
filter: alpha(opacity=$opacity-ie); /* [1] */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment