Skip to content

Instantly share code, notes, and snippets.

@wingsline
Created October 7, 2012 19:53
Show Gist options
  • Save wingsline/3849385 to your computer and use it in GitHub Desktop.
Save wingsline/3849385 to your computer and use it in GitHub Desktop.
SASS ms background gradient mixin
// simple ms gradient
@mixin ms-gradient ($start, $end) {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#{ie_hex_str($start)},endColorstr=#{ie_hex_str($end)});
-ms-filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#{ie_hex_str($start)}', EndColorStr='#{ie_hex_str($end)}');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment