Good Resources

http://www.w3schools.com/css/css3_gradients.asp

A Left To Right Colour Fade


#header {
	background-color: #045d31;
		
	background: -webkit-linear-gradient(left, #045d31, #abe1a5); /* For Safari */
	background: -o-linear-gradient(right, #045d31, #abe1a5); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(right, #045d31, #abe1a5); /* For Firefox 3.6 to 15 */
	background: linear-gradient(to right, #045d31, #abe1a5); /* Standard syntax */
}

 

 

Feel free to comment if you can add help to this page or point out issues and solutions you have found. I do not provide support on this site, if you need help with a problem head over to stack overflow.

Comments

Your email address will not be published. Required fields are marked *