Skip to content

Instantly share code, notes, and snippets.

@brandonstephens
Last active December 12, 2015 05:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brandonstephens/4723614 to your computer and use it in GitHub Desktop.
Save brandonstephens/4723614 to your computer and use it in GitHub Desktop.
Pass in an rgba value and this mixin provides a hex fallback for non alpha supporting browsers
@mixin fallBackground($color) {
background-color: rgb( red($color), green($color), blue($color) );
background-color: $color;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment