Center image

  • Thread starter Thread starter James Agostinho
  • Start date Start date
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
 
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.
 
You can centre a background with CSS
body{
background: #fff url(image.jpg) fixed center no-repeat;
}

Jon
Microsoft MVP - FP
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top