Reply
Sat 3 Apr, 2004 10:39 pm
Can you make backgrounds on HTML charts? If you can, how do you? I am making a website and I can't figure it out. Thanks!
Yes you can:
<table border="1" width="100%" background="picture.gif">
<tr>
<td width="100%">
</td>
</tr>
</table>
If you want to put the picture in a cell instead of the whole table:
<table border="1" width="100%">
<tr>
<td width="100%" background="picture.gif">
</td>
</tr>
</table>