Hi. You can use this :
background-image:url("mypix.jpg");
So, if you want the image to be repeated, you can use :
background-repeat:repeat-x; // x axis
background-repeat:repeat-y; // y axis
background-repeat:repeat; // x and y axis
background-repeat:no-repeat; // neither x axis nor y...