View Single Post
Old 2004-04-14, 07:05 AM   #8
urb
All the way from Room 101
 
urb's Avatar
 
Join Date: Aug 2003
Posts: 3,557
Send a message via ICQ to urb
You can use background images for :-

1) A whole page...
<BODY BACKGROUND="images/background.jpg">

2) A cell of a table...
<TD BACKGROUND="images/background.gif"

Example 1 will tile (repeat) over the whole page, so the actual size of the image is important.

Example 2 will be constrained by the size of the table cell, but will repeat itself, if smaller than the table cell it is in.

You can also use CSS to show a background only once, like this...
background-image:url(images/bkground.gif); background-repeat:no-repeat;
__________________
urb is offline   Reply With Quote