what html code for the body tag should i use to make my background image strech or centered?

Public Comments

  1. <body style="background:url('imagepath') center no-repeat;"> You can't stretch the image by code. You can just use a larger image and set that as background.
  2. Check this, it has exactly what u want : http://www.htmlite.com/faq022.php :)
  3. To center the image and have it not repeat and be fixed in place, add this CSS to your head tag. <style type="text/css"> <!-- body { background-image: url(abstract.jpg); background-position: center center; background-repeat: no-repeat; background-attachment: fixed; } --> </style> Joyce http://www.DesignByJoyce.com/
Powered by Yahoo! Answers