开发者

Add footer to HTML page

开发者 https://www.devze.com 2023-03-23 02:42 出处:网络
My index.html is mostly a table, and I would like to have one last row (TR) always at the bottom, doesn\'t matter the browser, or the screen size.

My index.html is mostly a table, and I would like to have one last row (TR) always at the bottom, doesn't matter the browser, or the screen size.

I tried using this as the last row in the <table>, but it does not work:

<tfoot>
  <td height=30>(c) My Company, 2011</td>
</tfoot>
开发者_开发问答

What do you recommend to me?


<tfoot>
<tr>
  <td height=30>&copy; My Company, 2011</td>
</tr>
</tfoot>

You forgot the tr tags

0

精彩评论

暂无评论...
验证码 换一张
取 消