Wrox Home  
Search P2P Archive for: Go

  Return to Index  

html_code_clinic thread: Aligning a section at the bottom of a page using CSS or HTML?


Message #1 by "Andrew Haslett" <scooter@p...> on Mon, 14 May 2001 08:47:06
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

  Return to Index