View Full Version : background aligning help..


girl2k
03-13-2004, 06:07 PM
hi.. i need help with aligning my background! I want it to repeat itself vertically (meaning, for it to repeat itself downward) since i'm using a background line (pattern) on my site..something like this:
_____
_____
_____

what's the HTML code for that? thanks in advance.

kittycat
03-13-2004, 06:14 PM
If you're using CSS...

body {
background-image: url(image.gif);
background-repeat: repeat-y;
}

If you aren't using CSS, then just add this in your body tag.
style="background-repeat: repeat-y;"