I have a table cell in which I would like some content to display at the top of the cell and other content at the bottom.
I am trying to use a div within the cell to accomplish this but it is not working.
Using CSS for this limited task would be fine too, however, redoing the whole page in css is not an option as the whole site is laid out in tables.
Here jsfiddle illustrating problem:
Here is code *same as in jsfiddle:
<table border="1">
<tr>
<td rowspan="2" valign="top">cell 1<div style="align-vertical: bottom">
want at bottom</div>
</td>
<td>cell 2<br>
<br>
<br>
</td>
</tr>
<tr>
<td>cell 3</td>
</tr>
</table>