Skip to content

Instantly share code, notes, and snippets.

@HungYuHei
Created July 19, 2011 14:29
Show Gist options
  • Save HungYuHei/1092548 to your computer and use it in GitHub Desktop.
Save HungYuHei/1092548 to your computer and use it in GitHub Desktop.
css3渐变
background: -moz-linear-gradient(center bottom, #b1b1b1 0%, #d3d3d3 99%, white 99%);
background: -o-linear-gradient(center bottom, #b1b1b1 0%, #d3d3d3 99%, white 99%);
background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #b1b1b1),color-stop(0.99, #d3d3d3),color-stop(0.99, white));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment