In my opinion the best way to learn about CSS properties you visit w3scools.com there every properties is explain with example. Here http://www.csstutorial.net/ is all about CSS. If you need to use image and color both the use this properties. .test{ background:url(images.jpg) #cccccc; }
to add color in background here are some eg: for you... In this case I will take body and apply to it. Since body is HTML element we are not going to add class(.) or id(#) but we will mention as body itself. Applying color in the body body{background-color: #333333;} or your can also use like this to body{background:#333333;} Applying image to the background body{background-image:url(your image location goes here); background-repeat:repeat-y;} or you can use like this tooo. body{background:url(your image location goes here) repeat-y;} Hope you will find this helpful.
One more thing you can also attach the color with the image so that if image does not exits the color will be filled. body{background:url(your image location goes here) repeat-y #333333;} or body{background-image:url(your image location goes here); background-repeat:repeat-y; background-color:#333333;}
http://www.w3schools.com/cssref/pr_background-color.asp color in the background body{background:#333333;} need anything else? hit me
Here is the perfect class with property of CSS may help you. .bgimage { background:url(images.jpg) #000000;}
Open your stylesheet which is basically a file with extension .css. Find body { } and enter color you want as the value of the attribute background. For example - body { background: violet;}, where violet is the color you want as your background color.