Hola:
 
La forma de repetir una imagen de fondo es tal como puso 
derkenuke... 
Las posibilidades son color de fondo, imagen, repetición, posición y fijación... 
Por ejemplo:
<style type="text/css">
body {
 background-color: white;
 background-image: url(fondo.gif);
 background-repeat: repeat-x; /* no-repeat, repeat-x, repeat-y */
 background-position: top left; /* top/center/bottom left/center/right */
 background-attachment: fixed; /* scroll fixed */
/* o usando solo una declaración */
/*
 background: #eeeeee url(fondo.gif) no-repeat center center fixed;
*/
}
</style> 
Si lo pruebas en una página sin contenido tal vez no veas bien los resultados... 
Por cierto, también estaba en las FAQs: 
Faq 24 - Propiedades de los fondos 
Saludos