Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Default table to bottom of page

Status
Not open for further replies.

tlmm

Programmer
Mar 25, 2004
45
CA
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.

Thanks.
 
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>

Hope this helps ...

- VB Rookie
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top