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. |
Permitted ARIA roles | Any |
DOM interface | HTMLTableSectionElement |
This element includes the global attributes.
align
in HTML 4, in HTML5
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 Unimplemented (see bug 2212).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
black = "#000000" |
green = "#008000" | ||
silver = "#C0C0C0" |
lime = "#00FF00" | ||
gray = "#808080" |
olive = "#808000" | ||
white = "#FFFFFF" |
yellow = "#FFFF00" | ||
maroon = "#800000" |
navy = "#000080" | ||
red = "#FF0000" |
blue = "#0000FF" | ||
purple = "#800080" |
teal = "#008080" | ||
fuchsia = "#FF00FF" |
aqua = "#00FFFF" |
<tfoot>
element should be styled using CSS. To give a similar effect to the bgcolor attribute, use the CSS property background-color
, on the relevant <td>
or <th>
elements.char
in HTML 4, in HTML5
align
is not set to char
, this attribute is ignored. char
, in CSS3, you can use the character set using the char
attribute as the value of the text-align
property Unimplemented.charoff
in HTML 4, in HTML5
valign
in HTML 4, in HTML5
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 |
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 1 | Yes | 1 | Yes | Yes | Yes |
align |
? | Yes | No1 | Yes | ? | ? |
bgcolor |
? | No | No | Yes | ? | ? |
char |
? | Yes | No2 | Yes | ? | ? |
charoff |
? | Yes | No2 | Yes | ? | ? |
valign |
? | Yes | No1 | Yes | ? | ? |
Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic support | Yes | Yes | Yes | 4 | Yes | Yes | Yes |
align |
? | ? | Yes | No1 | Yes | ? | ? |
bgcolor |
? | ? | No | No | Yes | ? | ? |
char |
? | ? | Yes | No2 | Yes | ? | ? |
charoff |
? | ? | Yes | No2 | Yes | ? | ? |
valign |
? | ? | Yes | No1 | Yes | ? | ? |
1. See bug 915
2. See bug 2212
<caption>
, <col>
, <colgroup>
, <table>
, <tbody>
, <td>
, <tbody>
, <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–2018 Mozilla Developer Network 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