table position

I am trying to set a table at the absolute bottom of a page. Any hints?<!--content-->use css, position it absolutely <table style="position: absolute; bottom:0px;"><!--content-->or even easier..<br />
<br />
<!-- invisible table that aligns everything at bottom --><br />
<table border="0" width="100%" height="100%"><br />
<tr><td align="center" valign="bottom"><br />
<br />
<!-- the actual table that users see --><br />
<table border="0" width="600" height="100"><br />
<tr><td><br />
</table><br />
<br />
</table><!--content-->
 
Back
Top