HowTo Add Image Background to Body in CSS
CSS tip that demonstrates how to define image background for body tag in CSS. Pay attention to no-repeat value for background-repeat attribute to make sure the image does not repeat itself.
body { background: url("mypicture.gif"); background-repeat: no-repeat; background-position: center; }
Monday, December 22, 2003 7:02 AM