3
In CSS you can make a background image repeat along either the x or the y axis.
selector {
background : url(image.jpg) repeat-x top;
}
this instruction directs the listed image (image.jpg) to be used as a background for the selector (tag, class, id, whatever...) abd repeat along the
x axis anchored at the
top.
Hope that this is helpful.
If you want to learn more about CSS, and styles, check out this site at the W3C -
http://www.w3.org/Style/CSS/learning there are a "boatload" of resources there to help. I also keep a copy of the CSS guide from
http://htmlhelp.com/ locally as a "CHM" so that I can refer to it as needed.