Forum Moderators: open
I need to push apart of the content inside of a <td></td to the bottom of the cell.
So I have:
<td widht=500>
<p>some article text here</p>
XXXXXXXXXXXXXXXXX
</td>
The XXXXX area is where I want the text to be pushed to the bottom of the cell, as of now the text is appearing just below the <p></p> text.
So I have:
<td valign=top> #1
<table ...>
<tr>
<td>
TEXT that should be valigned to the top
</td>
</tr>
<tr valign=bottom>
<td>
should be on the bottom
</td>
</tr>
</table>
</td>
that doesn't seem to work.
And if I removed the valign=top from #1 the entire text is centered regardless of what I do in the inner tr's or td's.