i have a web page using a css style file who have this property:
body {
background: #7a9c12 url(images/main_background.jpg) top center no-repeat;
color: #bbb;
font: 12px/14px helvetica, arial,Sans-serif;
}
As you can see this code only puts a background image on the top center on the div body. But, i need a background image in the botton center too of the body tag, how can i do this? Thanks!
An option if you’re not using CSS3 is to layer the background images on your
htmlandbodytags:Just make sure you only apply a solid background colour to the
htmlbackground property, otherwise you’ll overlay the image and only see thebodybackground image.