HTML: Gah... been a while

Homerboy

Lifer
Mar 1, 2000
30,890
5,001
126
I havea background image I need justified to the left... and NOT repeated (ie: just 1 instance of the image, but it has to be all the way to the left of the cell.

How the heck do I do that??!!?
 

Modeps

Lifer
Oct 24, 2000
17,254
44
91
style sheets, baby! it's by default thrown into the top left... so all you gotta do is:

body {
background-image:url(image/mybackground.jpg);
background-repeat:no-repeat;
}