Skip to content

Instantly share code, notes, and snippets.

@mustangostang
Created April 28, 2010 20:49
Show Gist options
  • Save mustangostang/382686 to your computer and use it in GitHub Desktop.
Save mustangostang/382686 to your computer and use it in GitHub Desktop.
crossbrowser gradients
#gradient {
background-image: -moz-linear-gradient(top, #81a8cb, #4477a1); /* Firefox 3.6 */
background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #4477a1),color-stop(1, #81a8cb)); /* Safari & Chrome */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#81a8cb', endColorstr='#4477a1'); /* IE6 & IE7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#81a8cb', endColorstr='#4477a1')"; /* IE8 */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment