html_code_clinic thread: Aligning a section at the bottom of a page using CSS or HTML?
if you want it to work on all browsers the easiest way is like this:
<body>
<table height="100%">
<tr>
<td valign="top">
CONTENT ALIGNED TO TOP
</td
</tr>
<tr>
<td valign="bottom">
CONTENT ALIGNED TO BOTTOM
</td>
</tr>
</table
</body>
joe
|





