1. Computing

Discuss in my forum

<tfoot></tfoot>

By , About.com Guide

TFOOT description:

The TFOOT tag defines the rows in an HTML table that are part of the footer of that table. Most browsers don't style the rows differently in any way, but you can use style sheets to highlight them if you like.

TFOOT Web Browser Support:

HTML Versions

TFOOT Attributes:

TFOOT End Tag:

</tfoot> optional, REQUIRED in XHTML

Contents:

Table rows. The following tags are valid within the TFOOT tag:
tr

TFOOT Valid Context:

The TFOOT tag is valid within the following tags:
table

TFOOT Usage:

Table with a Footer

<table border width="200">
  <tbody>
    <tr>
      <td colspan="2">this is the body row</td>
    </tr>
  </tbody>
  <tfoot>
    <tr>
      <td>column 1 part of the footer</td>
      <td>column 2 part of the footer</td>
    </tr>
  </tfoot>

</table>

TFOOT Special Notes:

  • Long tables can be divided into sections to give more definition to the table. You can then use style sheets to add special styles to the various sections of the table.

More TFOOT Information:

©2013 About.com. All rights reserved.