Web developer, Norwich - Clive Portman

CSS gradients

Published under CSS

Published on Tuesday 5th June 2012
#whatever {
	background: #b3bfdf;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3bfdf', endColorstr='#e5eaf5');
	background: -webkit-gradient(linear, left top, left bottom, from(#b3bfdf), to(#e5eaf5));
	background: -moz-linear-gradient(top, #b3bfdf, #e5eaf5);
	background: linear-gradient(top, #b3bfdf, #e5eaf5);
}