Return to Snippet

Revision: 31707
at September 11, 2010 03:13 by josephknight


Initial Code
/* for webkit browsers */
background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#000)); 	
/* for firefox 3.6+ */
background: -moz-linear-gradient(top,  #ccc,  #000); 
/* for IE */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#000000');

Initial URL
http://www.webdesignerwall.com/tutorials/cross-browser-css-gradient/

Initial Description
From: http://www.webdesignerwall.com/tutorials/cross-browser-css-gradient/

Initial Title
Crossbrowser CSS Gradient

Initial Tags
css

Initial Language
CSS