PDA

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



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

singhabhishek25
08-28-2014, 01: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, 03:06 AM
You can use Photoshop to edit and make a picture background to your original image.

george.weballey
08-28-2014, 09: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, 05:44 AM
Thanks George for giving the helpful example.