I need help centering the image in this code?

i need help centering an image with this code: <body style="background-attachment: fixed; background-center: center; background-repeat: no-repeat;" background="http://img176.imageshack.us/img176/8922/evanescenceiq2.jpg"> its rather simple, but i'm new with html, so i need help! :)

Public Comments

  1. mistake: background-center: center; correction: background-position: center;
  2. you have to have background-position:Center Center; instead of background-center: center or you could also try this <style type="text/css"> body {background-image:url(http://img176.imageshack.us/img176/8922/evanescenceiq2.jpg); background-position:Center Center; background-attachment:fixed; background-repeat:no-repeat;} take a look at this site it has a lot of info on HTML, XHTML, CSS and much more http://www.w3schools.com/
Powered by Yahoo! Answers