Skip to content

Instantly share code, notes, and snippets.

@alistairholt
Created April 13, 2011 17:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alistairholt/918011 to your computer and use it in GitHub Desktop.
Save alistairholt/918011 to your computer and use it in GitHub Desktop.
CSS Development in 2011
#foo {
background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(#EFF6F5), color-stop(0.02, #C6E2DF), color-stop(0.5, #C6E2DF), color-stop(0.98, #C6E2DF), to(#EFF6F5));
background: -webkit-linear-gradient(0deg, #EFF6F5, #C6E2DF 2%, #C6E2DF 50%, #C6E2DF 98%, #EFF6F5);
background: -moz-linear-gradient(0deg, #EFF6F5, #C6E2DF 2%, #C6E2DF 50%, #C6E2DF 98%, #EFF6F5);
background: -o-linear-gradient(0deg, #EFF6F5, #C6E2DF 2%, #C6E2DF 50%, #C6E2DF 98%, #EFF6F5);
background: linear-gradient(0deg, #EFF6F5, #C6E2DF 2%, #C6E2DF 50%, #C6E2DF 98%, #EFF6F5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment