Content categories | None. |
---|---|
Permitted content | Zero or more <tr> elements. |
Tag omission | The start tag is mandatory. The end tag may be omitted if there is no more content in the parent <table> element. |
Permitted parents | A <table> element. The <tfoot> must appear after any <caption> , <colgroup> , <thead> , <tbody> , or <tr> element. Note that this is the requirement as of HTML5.HTML 4 The <tfoot> element cannot be placed after any <tbody> and <tr> element. Note that this directly contradicts the above normative requirement from HTML5. |
Implicit ARIA role | rowgroup |
Permitted ARIA roles | Any |
DOM interface | HTMLTableSectionElement |
This element includes the global attributes.
The following attributes are deprecated and should not be used. They are documented below for reference when updating existing code and for historical interest only.
align
left
, aligning the content to the left of the cellcenter
, centering the content in the cellright
, aligning the content to the right of the celljustify
, inserting spaces into the textual content so that the content is justified in the cellchar
, aligning the textual content on a special character with a minimal offset, defined by the char
and charoff
attributes.If this attribute is not set, the left
value is assumed.
left
, center
, right
or justify
values, use the CSS text-align
property on it.char
value, in CSS3, you can use the value of the char
as the value of the text-align
property Unimplemented.bgcolor
The background color of the table. It is a 6-digit hexadecimal RGB code, prefixed by a '#
'. One of the predefined color kewords can also be used.
To achieve a similar effect, use the CSS background-color
property.
char
align
is not set to char
, this attribute is ignored.charoff
char
attribute.valign
baseline
, which will put the text as close to the bottom of the cell as it is possible, but align it on the baseline of the characters instead of the bottom of them. If characters are all of the size, this has the same effect as bottom
.bottom
, which will put the text as close to the bottom of the cell as it is possible;middle
, which will center the text in the cell;top
, which will put the text as close to the top of the cell as it is possible.vertical-align
property on it.Please see the <table>
page for examples on <tfoot>
.
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'tfoot element' in that specification. | Living Standard | |
HTML5 The definition of 'tfoot element' in that specification. | Recommendation |
Desktop | ||||||
---|---|---|---|---|---|---|
tfoot |
1 | 12 | 1 | Yes | Yes | Yes |
align
|
? | 12 | No
|
Yes | ? | ? |
bgcolor
|
? | ? | No | Yes | ? | ? |
char
|
? | 12 | No
|
Yes | ? | ? |
charoff
|
? | 12 | No
|
Yes | ? | ? |
valign
|
? | 12 | No
|
Yes | ? | ? |
Mobile | ||||||
---|---|---|---|---|---|---|
tfoot |
Yes | Yes | 4 | Yes | Yes | Yes |
align
|
? | ? | No
|
? | ? | ? |
bgcolor
|
? | ? | No | ? | ? | ? |
char
|
? | ? | No
|
? | ? | ? |
charoff
|
? | ? | No
|
? | ? | ? |
valign
|
? | ? | No
|
? | ? | ? |
<caption>
, <col>
, <colgroup>
, <table>
, <tbody>
, <td>
, <th>
, <thead>
, <tr>
;<tfoot>
element: :nth-child
pseudo-class to set the alignment on the cells of the column;text-align
property to align all cells content on the same character, like '.'.
© 2005–2020 Mozilla and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tfoot