PDA

View Full Version : How do I make a picture as a background on my web pages?



ashiselma
08-27-2014, 04:24 PM
How do I make a picture as a background on my web pages?

singhabhishek25
08-28-2014, 02:22 AM
You can write as below there are many more things can be used with background like position, repeat etc..
Background:url(image url);

RH-Calvin
08-28-2014, 04:06 AM
You can use Photoshop to edit and make a picture background to your original image.

george.weballey
08-28-2014, 10:25 AM
css:

body{
background:url(yourimage) no-repeat center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

webcreations
08-30-2014, 06:44 AM
Thanks George for giving the helpful example.