The HTML <tbody>
element groups one or more <tr>
elements as the body of a <table>
element.
Content categories | None. |
---|---|
Permitted content | Zero or more <tr> elements. |
Tag omission | The <tbody> element is not a required child element for a parent <table> element to graphically render. However, it must not be present, if its parent <table> element has a <tr> element as a child. |
Permitted parents | Within the required parent <table> element, the <tbody> element can be added after a <caption> , <colgroup> , <thead> and a <tfoot> element. |
Permitted ARIA roles | Any |
DOM interface | HTMLTableSectionElement |
This element includes the global attributes.
align
deprecated in HTML 4.01, deleted 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.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
non standard
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" |
<tbody>
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
deprecated in HTML 4.01, deleted 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
deprecated in HTML 4.01, deleted in HTML5
valign
deprecated in HTML 4.01, deleted 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.<thead>
and/or <tfoot>
element, the <tbody>
element provides additional semantic information for devices such as printers and displays.<tbody>
represents the content which, when longer than a page, will most likely differ for each page printed; while the content of <thead>
and <tfoot>
will be the same or similar for each page printed.<tbody>
will enable separate scrolling of the <thead>
, <tfoot>
, and <caption>
elements of the same parent <table>
element.<thead>
, <tfoot>
, and <caption>
elements, multiple <tbody>
elements are permitted (if consecutive), allowing the rows in long tables to be divided into different sections, each separately formatted as needed.Please see the <table>
page for examples on <tbody>
.
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of 'tbody element' in that specification. | Living Standard | |
HTML5 The definition of 'tbody element' in that specification. | Recommendation |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 1.0 | (Yes) | 1.0 (1.7 or earlier) | (Yes) | (Yes) | (Yes) |
align/valign attribute | 1.0 | ? | No support [1] | (Yes) | (Yes) | (Yes) |
char/charoff attribute | 1.0 | ? | No support [2] | (Yes) | (Yes) | (Yes) |
bgcolor attribute non standard | No support | ? | No support | (Yes) | No support | No support |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | 1.0 (1.0) | (Yes) | (Yes) | (Yes) |
align/valign attribute | ? | ? | No support [1] | ? | ? | ? |
char/charoff attribute | ? | ? | No support [2] | ? | ? | ? |
bgcolor attribute non standard | No support | ? | No support | (Yes) | No support | No support |
[1] See bug 915.
[2] See bug 2212.
<caption>
, <col>
, <colgroup>
, <table>
, <td>
, <tfoot>
, <th>
, <thead>
, <tr>
;<tbody>
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–2017 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/tbody