The HTML <tr> element defines a row of cells in a table. Those can be a mix of <td> and <th> elements.
| Content categories | None |
|---|---|
| Permitted content | Zero or more <td> or <th> elements, or a mix of them |
| Tag omission | Start tag is mandatory. End tag may be omitted if the <tr> element is immediately followed by a <tr> element, or if the parent table group (<thead>, <tbody> or <tfoot>) element doesn't have any more content |
| Permitted parents |
<table>, <thead>, <tbody> or <tfoot> element |
| Permitted ARIA roles | Any |
| DOM interface | HTMLTableRowElement |
This element includes the global attributes.
align Deprecated since HTML4.01, Obsolete since HTML5
left, aligning the content to the left of the cellscenter, centering the content in the cellsright, aligning the content to the right of the cellsjustify, widening the spaces in the textual content so that the content is justified in the cellschar, 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 parent node's value is inherited.
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 Deprecated since HTML4.01, Obsolete since HTML5
#RRGGBB or #RGB value or a color keyword. <tr> element should be styled using CSS. To give a similar effect to the bgcolor attribute, use the CSS property background-color.char Deprecated since HTML4.01, Obsolete since 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 since HTML4.01, Obsolete since HTML5
valign Deprecated since HTML4.01, Obsolete since 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.See <table> for examples on <tr>.
| Specification | Status | Comment |
|---|---|---|
| WHATWG HTML Living Standard The definition of 'tr element' in that specification. | Living Standard | |
| HTML5 The definition of 'tr 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>, <tbody>, <td>, <tfoot>, <th>, <thead>;<tr> 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/tr