Skip to content

Instantly share code, notes, and snippets.

@zastrow
Created November 24, 2012 19:25
Show Gist options
  • Save zastrow/4141092 to your computer and use it in GitHub Desktop.
Save zastrow/4141092 to your computer and use it in GitHub Desktop.
CSS Gradients - Does not include fall backs || Choose Linear or Radial first
@mixin gradient ($type, $val...) {
background: -webkit-#{$type}-gradient(#{$val});
background: -moz-#{$type}-gradient(#{$val});
background: -ms-#{$type}-gradient(#{$val});
background: -o-#{$type}-gradient(#{$val});
background: #{$type}-gradient(#{$val});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment