The <td>
defines a cell of a table that contains data. It participates in the table model.
Content categories | None. |
---|---|
Permitted content | Flow content. |
Tag omission | The start tag is mandatory. The end tag may be omitted, if it is immediately followed by a <th> or <td> element or if there are no more data in its parent element. |
Permitted parents | A <tr> element. |
Permitted ARIA roles | Any |
DOM interface | HTMLTableDataCellElement |
This element includes the global attributes.
abbr
Obsolete since HTML5
align
Deprecated since HTML4.01, Obsolete since 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.axis
Obsolete since HTML5
scope
attribute.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" |
<td>
element should be styled using CSS. To give a similar effect to the bgcolor attribute, use the CSS property background-color
instead.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
colspan
1
. Values higher than 1000 will be considered as incorrect and will be set to the default value (1).headers
<th>
elements that apply to this element.rowspan
1
; if its value is set to 0
, it extends until the end of the table section (<thead>
, <tbody>
, <tfoot>
, even if implicitly defined, that the cell belongs to. Values higher than 65534 are clipped down to 65534.scope
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 same 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 possiblemiddle
, which will center the text in the celltop
, which will put the text as close to the top of the cell as it is possible.vertical-align
property on it.width
Deprecated since HTML4.01, Obsolete since HTML5
<col>
width may also have some effect. In general, if a column's width is too narrow to show a particular cell properly, it, and thus the cells in it, may be widened when displayed. width
property.Please see the <table>
page for examples on <td>
.
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'td element' in that specification. | Living Standard | |
HTML5 The definition of 'td element' in that specification. | Recommendation |
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 1 | Yes | 1 | Yes | Yes | Yes |
abbr |
1 | Yes | 1 | Yes | Yes | Yes |
align |
? | Yes | No1 | Yes | ? | ? |
axis |
1 | Yes | 1 | Yes | Yes | Yes |
bgcolor |
? | No | No | Yes | ? | ? |
char |
? | Yes | No2 | Yes | ? | ? |
charoff |
? | Yes | No2 | Yes | ? | ? |
colspan |
1 | Yes | 1 | Yes | Yes | Yes |
headers |
1 | Yes | 1 | Yes | Yes | Yes |
rowspan |
1 | Yes | 1 | Yes | Yes | Yes |
scope |
1 | Yes | 1 | Yes | Yes | Yes |
valign |
? | Yes | No1 | Yes | ? | ? |
width |
1 | Yes | 1 | Yes | Yes | 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 |
abbr |
Yes | Yes | Yes | 4 | Yes | Yes | Yes |
align |
? | ? | Yes | No1 | Yes | ? | ? |
axis |
Yes | Yes | Yes | 4 | Yes | Yes | Yes |
bgcolor |
? | ? | No | No | Yes | ? | ? |
char |
? | ? | Yes | No2 | Yes | ? | ? |
charoff |
? | ? | Yes | No2 | Yes | ? | ? |
colspan |
Yes | Yes | Yes | 4 | Yes | Yes | Yes |
headers |
Yes | Yes | Yes | 4 | Yes | Yes | Yes |
rowspan |
Yes | Yes | Yes | 4 | Yes | Yes | Yes |
scope |
Yes | Yes | Yes | 4 | Yes | Yes | Yes |
valign |
? | ? | Yes | No1 | Yes | ? | ? |
width |
Yes | Yes | Yes | 4 | Yes | Yes | Yes |
1. See bug 915
2. See bug 2212
<caption>
, <col>
, <colgroup>
, <table>
, <tbody>
, <tfoot>
, <th>
, <thead>
, <tr>
.
© 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/td