Skip to content

Instantly share code, notes, and snippets.

@cliftoncanady
Created October 25, 2012 15:44
Show Gist options
  • Save cliftoncanady/3953512 to your computer and use it in GitHub Desktop.
Save cliftoncanady/3953512 to your computer and use it in GitHub Desktop.
CSS: Full CSS3 Gradients
/*******
Full CSS3 Gradients
*************************************/
background-color: #000;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bbb', endColorstr='#000');
background-image: -webkit-gradient(linear, left top, left bottom, from(#bbb), to(#000));
background-image: -webkit-linear-gradient(top, #bbb, #000);
background-image: -moz-linear-gradient(top, #bbb, #000);
background-image: -ms-linear-gradient(top, #bbb, #000);
background-image: -o-linear-gradient(top, #bbb, #000);
background-image: linear-gradient(top, #bbb, #000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment