how to extend the image background while composing a html page?

warrior

New member
i want to extend the image which is used as a background for my html page. the image is cut on the both sides and so i want to stretch it so that it covers the full screen. please help me.
 
in your css script use the following:

body {
width:100%;
height:100%;
background-image:url(" /images/backgrnd.jpg") repeat-x;
}

just replace the source location and file name for the background image with the image your want to use...
 
Back
Top