Created
October 18, 2015 19:31
-
-
Save JoeNoPhoto/006581e396da58ea9c83 to your computer and use it in GitHub Desktop.
Opacity Mixin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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