Skip to content

Instantly share code, notes, and snippets.

@aristretto
Created April 23, 2014 21:06
Show Gist options
  • Select an option

  • Save aristretto/11232406 to your computer and use it in GitHub Desktop.

Select an option

Save aristretto/11232406 to your computer and use it in GitHub Desktop.
sass - mixin - transparent background color with IE support
@mixin transparent($color, $alpha) {
$rgba: rgba($color, $alpha);
$ie-hex-str: ie-hex-str($rgba);
background-color: transparent;
background-color: $rgba;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#{$ie-hex-str},endColorstr=#{$ie-hex-str});
zoom: 1;
}
@aristretto
Copy link
Author

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