Skip to content

Instantly share code, notes, and snippets.

@atma
Created December 16, 2012 17:35
Show Gist options
  • Save atma/4309992 to your computer and use it in GitHub Desktop.
Save atma/4309992 to your computer and use it in GitHub Desktop.
Full CSS3 Gradients including IE filters and old webkit
.el {
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