Created
June 24, 2011 13:11
-
-
Save kaaes/1044735 to your computer and use it in GitHub Desktop.
bulletproof css gradients
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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