centering background images in html

There is no way with HTML, but if you use the css "no-repeat", you should be able to get what you want. Something like this:

Code:
body{
background:url(yourimage.png); background-repeat:no-repeat; background-position:center;
}

I havent tested that, but it should get you started.
 
Back
Top Bottom