The HTML <td>
element 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 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 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
deleted in HTML5
scope
attribute.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" |
<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 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
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
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 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 in HTML 4.01, deleted in 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 |
---|---|---|
WHATWG 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 (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 |
rowspan attribute with value 0 (extend to the end of the rowgroup) | No support | ? | (Yes) | No support | 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] This is currently not implemented in Gecko. See bug 915.
[2] This is currently not implemented in Gecko. See bug 2212.
<caption>
, <col>
, <colgroup>
, <table>
, <tbody>
, <tfoot>
, <th>
, <thead>
, <tr>
.
© 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/td