DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Cross Browser CSS Gradients With Sass
@mixin gradient($first, $second) {
background: $second;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$first', endColorstr='$second');
background: -webkit-gradient(linear, left top, left bottom, from($first), to($second));
background: -moz-linear-gradient(top, $first, $second);
}
.gradient {
@include gradient(black, white);
}




