Thread: HTML Guruz.
View Single Post
Old 04-06-2004, 09:31 AM  
chodadog
Confirmed User
 
Join Date: Apr 2002
Posts: 9,736
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.

&lt;table cellpadding="0" width="100%" border="1"><br>
&lt;tr><br>
&lt;td>Welcome&lt;BR>&lt;BR>&lt;/td><br>
&lt;/tr><br>
<br>
&lt;tr><br>
&lt;td valign="bottom">Bottom&lt;BR>&lt;/td><br>
&lt;/tr><br>
&lt;/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
chodadog is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote