Contents
HTML tfoot: Main Tips
- To group footer content of an HTML table, you should use the
tfoot
tag. <tfoot>
goes together with the <tbody> and <thead> to specify each part of table (footer, header, body).<tfoot>
should have one or more <tr> tags inside.
Defining HTML Table Footers
The tfoot
tag is used to define the content of the HTML table footer:
<table border="1">
<thead>
<tr>
<th>Cats</th>
<th>Dogs</th>
</tr>
</thead>
<tbody>
<tr>
<td>7</td>
<td>6</td>
</tr></tbody>
<tfoot align="center">
<tr>
<th colspan="2">Cats win!</th>
</tr>
</tfoot>
</table>
One table can only have one tfoot
element. It should be positioned below the <tbody>
in the document flow.
It should also always appear after <thead>
, <colgroup> and <caption>, if any are used.
- Easy to use with a learn-by-doing approach
- Offers quality content
- Gamified in-browser coding experience
- The price matches the quality
- Suitable for learners ranging from beginner to advanced
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid Certificates of completion
- A wide range of learning programs
- University-level courses
- Easy to navigate
- Verified certificates
- Free learning track available
- University-level courses
- Suitable for enterprises
- Verified certificates of completion
Deprecated tfoot Tag Attributes
HTML tfoot
tag had a few specific attributes. However, they all have been deprecated in HTML4 and removed completely in HTML5. We'd advise you to use CSS properties for styling instead.
align
defined the alignment of content for the <tfoot>
:
<tfoot align="center">
Note: instead of align, use the CSS text-align property.
char
defined the alignment of content for the <tfoot>
element to a character:
<tfoot align="char" char=".">
charoff
set the number of characters the content of the <tfoot>
element should be aligned from the character set by the char
attribute:
<tfoot align="char" char="." charoff="2">
valign
set all the content of the <tfoot>
element to align vertically:
<tfoot valign="bottom">
Note: instead of valign, use the CSS vertical-align property.