• Use [hide] Content [/hide] to prevent leeching of your content.

I can't use CSS in

maggiee

New Member
How would you center a background image *not* using css? I need to center a background image, the problem is that I can't use CSS in order to do it. The image can't tile, and it has to be centered. So what would be the proper code in HTML?
 

Admin

Member
Why can't you use CSS lol? Do you mean you can't use an external style sheet or you want to sue it in an email?

HTML

<div align="center" style="background-image: url('image.jpg');"></div>

Or you could use JS to do it :

object.style.backgroundImage="url(image.jpg)"
 
Top Bottom