Skip to content

Instantly share code, notes, and snippets.

@YamilG
Created March 20, 2011 19:08
Show Gist options
  • Save YamilG/878567 to your computer and use it in GitHub Desktop.
Save YamilG/878567 to your computer and use it in GitHub Desktop.
gradient support for webkit, mozilla and ie (YES IE!)
background-image: -moz-linear-gradient(top, white, #cff2ff);
/* FF3.6 */
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, white), color-stop(1, #cff2ff));
/* Saf4+, Chrome */
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff', EndColorStr='#cff2ff');
/* IE6–IE9 */ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment