Center image

J

James Agostinho

Hello Ng,
Can someone please help me with an image problem?
I have a jpg picture that I'm using for my background, but it is tiled and I
would like to center it and also make it fit the window, is this possible?

This is what I have now

<body background="monty_in_bed.jpg" bgproperties="fixed">
Any help ???
James
 
M

MD Websunlimited

Hi James,

You can not center a background image. Instead create the image in an absolutely positioned div then set the zindex to a negative
value. Using JavaScript position it based upon the screen width and height.
 
J

Jon

You can centre a background with CSS
body{
background: #fff url(image.jpg) fixed center no-repeat;
}

Jon
Microsoft MVP - FP
 
M

MD Websunlimited

Forgot that ;>)

Jon said:
You can centre a background with CSS
body{
background: #fff url(image.jpg) fixed center no-repeat;
}

Jon
Microsoft MVP - FP
 
Top