Skip to content

Instantly share code, notes, and snippets.

@scjudd
Created October 24, 2011 20:42
Show Gist options
  • Save scjudd/1310177 to your computer and use it in GitHub Desktop.
Save scjudd/1310177 to your computer and use it in GitHub Desktop.
cross-browser gradient
background: -webkit-gradient(linear, left top, left bottom, from(#254080), to(#1d3366));
background: -moz-linear-gradient(top, #254080,#1d3366);
background: filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#254080', endColorstr='#1d3366');
/* with color stops.. */
background: -webkit-gradient(linear, left top, left bottom, from(#7F87C6), color-stop(20%, #2239A1));
background: -moz-linear-gradient(left top, left bottom, from(#7F87C6), color-stop(20%, #2239A1));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment