Is there a cross browser method of attaching some content in a <div>
to the bottom? One difficulty is that the <div>
may have an arbitrary height applied, but I want certain content to be stuck to the bottom of it at all times.
This would have been accomplished in the bad old days like this:
<table style="height: foo;">
<tr><td valign="top">content</td></tr>
<tr><td valign="bottom">stuck to the bottom</td></tr>
</table>
Can I do this without resorting to this technique?