|
Not entirely sure what you want. But you want the text to be at the very bottom of the table, without a gap?
Easiest way to do it would be to create a new row and set the cellpadding value of the table to 0. Just added the line breaks to show what happens.
<table cellpadding="0" width="100%" border="1"><br>
<tr><br>
<td>Welcome<BR><BR></td><br>
</tr><br>
<br>
<tr><br>
<td valign="bottom">Bottom<BR></td><br>
</tr><br>
</table>
<table cellpadding="0" width="100%" border="1">
<tr>
<td>Welcome<BR><BR></td>
</tr>
<tr>
<td valign="bottom"><BR><BR>Bottom<BR></td>
</tr>
</table>
I think that's what you wanted. You were rather vague, though.
__________________
26 + 6 = 1
|