Thomas: valign=bottom ???

Beitrag lesen

Hi Ihrs,
ich glaub ich hab ein Brett vor'm Kopp :-(
valign=bottom funktioniert nicht so recht, kann mir jemand sagen was ich falsch mache? ich will eine zeile der tabelle immer am ende der seite stehen haben, egal wieviel inhalt darüber steht, quasi als art fusszeile.

<HTML>
<HEAD>
<title></title>
</HEAD>
<BODY leftMargin=0 topMargin=0 marginwidth="0" marginheight="0">

<table width=100% height=100% border=0 cellPadding=0 cellSpacing=0>

<tr>
 <td width=100% align=left>
  <table width=100% border=0>
  <tr>
 <td># Kopfzeile #</td>
 </tr>
 </table>
 </td>
</tr>

<tr>
 <td width=100% align=left>
   <table width="760" height=100% border=0>
   <tr>
   <td># Inhalt #</td>
   </tr>
 </table>
 </td>
</tr>

<tr>
 <td valign=bottom width=100% align=left>
  <table width=100% border=0>
  <tr>
 <td># Fusszeile #</td>
 </tr>
 </table>
 </td>
</tr>

</table>

</body>
</html>

kann mir jemand helfen?