Skip to content

Instantly share code, notes, and snippets.

@dalecaru
Created March 10, 2011 14:40
Show Gist options
  • Save dalecaru/864184 to your computer and use it in GitHub Desktop.
Save dalecaru/864184 to your computer and use it in GitHub Desktop.
Cross-Browser CSS Gradient
body {
background: #999; /* for non-css3 browsers */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#000000'); /* for IE */
background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#000)); /* for webkit browsers */
background: -moz-linear-gradient(top, #ccc, #000); /* for firefox 3.6+ */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment