Skip to content

Instantly share code, notes, and snippets.

@sambody
Created June 11, 2013 23:04
Show Gist options
  • Save sambody/5761546 to your computer and use it in GitHub Desktop.
Save sambody/5761546 to your computer and use it in GitHub Desktop.
CSS: Background gradient (IE10+), linear gradient
background-color: #444444;
background-image: -webkit-linear-gradient(top, #444444, #999999);
background-image: -moz-linear-gradient(top, #444444, #999999);
background-image: -o-linear-gradient(top, #444444, #999999);
background-image: linear-gradient(to bottom, #444444, #999999);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment