Return to Snippet

Revision: 28071
at July 1, 2010 07:07 by batfan


Updated Code
/* FireFox 3.6 */
background-image: -moz-linear-gradient(top, #9FD4FF, #008CFF);
/* Safari4+, Chrome */
background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #008CFF),color-stop(1, #9FD4FF));
/* IE6,IE7 */
filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#9FD4FF', endColorstr='#008CFF');
/* IE8 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#9FD4FF', endColorstr='#008CFF')";

Revision: 28070
at July 1, 2010 07:06 by batfan


Updated Code
/* FireFox 3.6 */
	background-image: -moz-linear-gradient(top, #9FD4FF, #008CFF);
	/* Safari4+, Chrome */
	background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #008CFF),color-stop(1, #9FD4FF));
	/* IE6,IE7 */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#9FD4FF', endColorstr='#008CFF');
	/* IE8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#9FD4FF', endColorstr='#008CFF')";

Revision: 28069
at June 30, 2010 07:33 by batfan


Initial Code
/* FireFox 3.6 */
background-image: -moz-linear-gradient(top, #049e02, #016c00);
/* Safari4+, Chrome */
background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #049e02),color-stop(1, #016c00));
/* IE6,IE7 */
filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#049e02', endColorstr='#016c00');
/* IE8 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#049e02', endColorstr='#016c00')";

Initial URL


Initial Description


Initial Title
Cross-browser CSS Gradient

Initial Tags
css

Initial Language
CSS