Skip to content

Instantly share code, notes, and snippets.

@kaaes
Created June 24, 2011 13:11
Show Gist options
  • Save kaaes/1044735 to your computer and use it in GitHub Desktop.
Save kaaes/1044735 to your computer and use it in GitHub Desktop.
bulletproof css gradients
#container {
background: #fff url(gradient.gif) repeat-x bottom;
background: -webkit-gradient(
linear, 0 100%, 0 0,
from(#ecebe7), color-stop(50%, #fff), to(#fff)
);
background: -webkit-linear-gradient(bottom, #ecebe7, #fff 50%, #fff);
background: -moz-linear-gradient(bottom, #ecebe7, #fff 50%, #fff);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment