The HTMLTableCellElement
interface provides special properties and methods (beyond the regular HTMLElement
interface it also has available to it by inheritance) for manipulating the layout and presentation of table cells, either header or data cells, in an HTML document.
Inherits properties from its parent, HTMLElement
.
HTMLTableCellElement.abbr
DOMString
which can be used on <th>
elements (not on <td>
), specifying an alternative label for the header cell.. This alternate label can be used in other contexts, such as when describing the headers that apply to a data cell. This is used to offer a shorter term for use by screen readers in particular, and is a valuable accessibility tool. Usually the value of abbr
is an abbreviation or acronym, but can be any text that's appropriate contextually.HTMLTableCellElement.cellIndex
Read only
cells
collection of the <tr>
the cell is contained within. If the cell doesn't belong to a <tr>
, it returns -1
.HTMLTableCellElement.colSpan
colspan
attribute.HTMLTableCellElement.headers
Read only
DOMSettableTokenList
describing a list of id
of <th>
elements that represents headers associated with the cell. It reflects the headers
attribute.HTMLTableCellElement.rowSpan
rowspan
attribute.HTMLTableCellElement.scope
DOMString
indicating the scope of a <th>
cell. Header cells can be configured, using the scope
property, the apply to a specified row or column, or to the not-yet-scoped cells within the current row group (that is, the same ancestor <thead>
, <tbody>
, or <tfoot>
element). If no value is specified for scope
, the header is not associated directly with cells in this way. Permitted values for scope
are: col
colspan
is used as well), until either the end of the column or another <th>
in the column establishes a new scope.colgroup
row
rowspan
is used as well), until either the end of the row or another <th>
in the same row establishes a new scope.rowgroup
""
)No specific method; inherits methods from its parent, HTMLElement
.
These properties have been deprecated and should no longer be used. They are documented primarily to help understand older code bases.
HTMLTableCellElement.align
DOMString
containing an enumerated value reflecting the align
attribute. It indicates the alignment of the element's contents with respect to the surrounding context. The possible values are "left"
, "right"
, and "center"
.HTMLTableCellElement.axis
DOMString
containing a name grouping cells in virtual. It reflects the obsolete axis
attribute.HTMLTableCellElement.bgColor
DOMString
containing the background color of the cells. It reflects the obsolete bgcolor
attribute.HTMLTableCellElement.ch
DOMString
containing one single chararcter. This character is the one to align all the cell of a column on. It reflects the char
and default to the decimal points associated with the language, e.g. '.'
for English, or ','
for French. This property was optional and was not very well supported.HTMLTableCellElement.chOff
DOMString
containing a integer indicating how many characters must be left at the right (for left-to-right scripts; or at the left for right-to-left scripts) of the character defined by HTMLTableCellElement.ch
. This property was optional and was not very well supported.HTMLTableCellElement.height
DOMString
containing a length of pixel of the hinted height of the cell. It reflects the obsolete height
attribute.HTMLTableCellElement.noWrap
Boolean
value reflecting the nowrap
attribute and indicating if cell content can be broken in several lines.HTMLTableCellElement.vAlign
DOMString
representing an enumerated value indicating how the content of the cell must be vertically aligned. It reflects the valign
attribute and can have one of the following values: "top"
, "middle"
, "bottom"
, or "baseline"
. Use the CSS vertical-align
property instead.HTMLTableCellElement.width
DOMString
specifying the number of pixels wide the cell should be drawn, if possible. This property reflects the also obsolete width
attribute. Use the CSS width
property instead.Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'HTMLTableCellElement' in that specification. | Living Standard | No change from HTML5. |
HTML5 The definition of 'HTMLTableCellElement' in that specification. | Recommendation | The following properties have been obsoleted: align , axis , bgColor , height , width , ch , chOff , noWrap , and vAlign .The headers property is now read-only and contains a DOMSettableTokenList rather than a mere DOMString .The colspan and rowspan properties are now unsigned long . |
Document Object Model (DOM) Level 2 HTML Specification The definition of 'HTMLTableCellElement' in that specification. | Obsolete | The cellIndex property is now read-only. |
Document Object Model (DOM) Level 1 Specification The definition of 'HTMLTableCellElement' in that specification. | Obsolete | Initial definition. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | 1 | Yes | Yes | Yes |
abbr |
Yes | Yes | 1 | Yes | Yes | Yes |
align
|
Yes | Yes | 1 | Yes | Yes | Yes |
axis
|
Yes | Yes | 1 | Yes | Yes | Yes |
bgColor
|
Yes | Yes | 1 | Yes | Yes | Yes |
cellIndex |
Yes | Yes | 1 | Yes | Yes | Yes |
ch
|
Yes | Yes | 1 | Yes | Yes | Yes |
chOff
|
Yes | Yes | 1 | Yes | Yes | Yes |
colSpan |
Yes | Yes | 1 | Yes | Yes | Yes |
headers |
Yes | Yes | 1 | Yes | Yes | Yes |
height
|
Yes | Yes | 1 | Yes | Yes | Yes |
noWrap
|
Yes | Yes | 1 | Yes | Yes | Yes |
rowSpan |
Yes | Yes | 1 | Yes | Yes | Yes |
scope |
Yes | Yes | 1 | Yes | Yes | Yes |
vAlign
|
Yes | Yes | 1 | Yes | Yes | Yes |
width
|
Yes | Yes | 1 | Yes | Yes | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | 4 | Yes | Yes | ? |
abbr |
Yes | Yes | Yes | 4 | Yes | Yes | ? |
align
|
Yes | Yes | Yes | 4 | Yes | Yes | ? |
axis
|
Yes | Yes | Yes | 4 | Yes | Yes | ? |
bgColor
|
Yes | Yes | Yes | 4 | Yes | Yes | ? |
cellIndex |
Yes | Yes | Yes | 4 | Yes | Yes | ? |
ch
|
Yes | Yes | Yes | 4 | Yes | Yes | ? |
chOff
|
Yes | Yes | Yes | 4 | Yes | Yes | ? |
colSpan |
Yes | Yes | Yes | 4 | Yes | Yes | ? |
headers |
Yes | Yes | Yes | 4 | Yes | Yes | ? |
height
|
Yes | Yes | Yes | 4 | Yes | Yes | ? |
noWrap
|
Yes | Yes | Yes | 4 | Yes | Yes | ? |
rowSpan |
Yes | Yes | Yes | 4 | Yes | Yes | ? |
scope |
Yes | Yes | Yes | 4 | Yes | Yes | ? |
vAlign
|
Yes | Yes | Yes | 4 | Yes | Yes | ? |
width
|
Yes | Yes | Yes | 4 | Yes | Yes | ? |
<th>
and <td>
by inheritance via HTMLTableHeaderCellElement
and HTMLTableDataCellElement
.
© 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/API/HTMLTableCellElement