I am wondering how to default a table to the bottom of the page. On one page, there is certain info that I want at the very bottom of the page, but can't figure out how to do it.
You can try creating a borderless table that contains your other elements. Like a footer table such as you mentioned. Then put the footer table in a cell of the bigger table with the vertical align set to bottom.
Like this for example:
Code:
<table id="tblMain"><tr>
<td>Whatever you want here</td>
</tr><tr>
<td>Whatever you want here</td>
</tr><tr>
<td valign="bottom">
<table id="tblFooter"><tr>
<td>footer information here</td>
</tr></table>
</td>
</tr></table>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.