do you mean something like this
<STYLE TYPE="text/css"><!--
BODY{
background-image: url("image.gif"

;
background-attachment: fixed;
background-position: 0% 100%;
background-repeat: no-repeat;
}
--></STYLE>
this places a image in the background in the lower left corner and does not repeat.
or you could simple place the image in the background attribute of the td in the lower left corner of the table
<html>
<head>
</head>
<body>
<table border="1" width=300>
<tr>
<td>bla</td>
<td>bla</td>
</tr>
<tr>
<td background="leave.jpg">bla</td>
</tr>
</table>
</body>
</html>
the image should not repeat in the background of the column.
I would use the first and position it to what you want though Hope that helps
admin@onpntwebdesigns.com