Skip to content

Instantly share code, notes, and snippets.

@bojanbjelic
Created July 20, 2012 15:39
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 bojanbjelic/3151427 to your computer and use it in GitHub Desktop.
Save bojanbjelic/3151427 to your computer and use it in GitHub Desktop.
css linear gradient
background: #D9DBDB;
background: -moz-linear-gradient(left,rgba(217, 219, 219, 1) 0%,rgba(240, 242, 242, 1) 100%);
background: -webkit-gradient(linear,left top,right top,color-stop(0%,rgba(217, 219, 219, 1)),color-stop(100%,rgba(240, 242, 242, 1)));
background: linear-gradient(left,rgba(217, 219, 219, 1) 0%,rgba(240, 242, 242, 1) 100%);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment