Now, picking up the last example from above, wouldn't it be neat to have that single image centered?

background-position:<horizontal> <vertical>;
background-position:<keyword> <keyword>;

One can either talk in absolute (px) or relative (%) units, or use keywords like so (only showing the relevant repeat-part here):

style="background-repeat:50% 50%;"
style="background-repeat:top center;"
style="background-repeat:75% 75%;"

I wouldn't advice on mixing the units (like background-repeat:50% center;), most browsers don't like this.