Skip to content

Instantly share code, notes, and snippets.

@chriseppstein
Created April 26, 2011 15:48
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 chriseppstein/942515 to your computer and use it in GitHub Desktop.
Save chriseppstein/942515 to your computer and use it in GitHub Desktop.
div {
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(30px, #ffcccc), color-stop(100px, #33ff33), color-stop(100%, #000000));
background: -webkit-linear-gradient(#ffffff, #ffcccc 30px, #33ff33 100px, #000000);
background: -moz-linear-gradient(#ffffff, #ffcccc 30px, #33ff33 100px, #000000);
background: -o-linear-gradient(#ffffff, #ffcccc 30px, #33ff33 100px, #000000);
background: linear-gradient(#ffffff, #ffcccc 30px, #33ff33 100px, #000000);
}
@import "compass/css3";
div {
@include background(linear-gradient(#fff, #fcc 30px, #3f3 100px, #000));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment