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.colSpan
unsigned
long
that represents the number of columns this cell must span. It reflects the colspan
attribute.HTMLTableCellElement.rowSpan
unsigned
long
that represents the number of rows this cell must span. It reflects the rowspan
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.cellIndex
Read only
long
representing the cell position in the cells collection of the <tr>
it belongs to. If the cell doesn't belong to a <tr>
, it returns -1
.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.bgColor
DOMString
containing the background color of the cells. It reflects the obsolete bgcolor
attribute.HTMLTableCellElement.axis
DOMString
containing a name grouping cells in virtual. It reflects the obsolete axis
attribute.HTMLTableCellElement.height
DOMString
containing a length of pixel of the hinted height of the cell. It reflects the obsolete height
attribute.HTMLTableCellElement.width
DOMString
containing a length of pixel of the hinted width of the cell. It reflects the obsolete width
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.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"
.No specific method; inherits methods from its parent, HTMLElement
.
Specification | Status | Comment |
---|---|---|
WHATWG 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. | Recommendation | The cellIndex property is now read-only. |
Document Object Model (DOM) Level 1 Specification The definition of 'HTMLTableCellElement' in that specification. | Recommendation | Initial definition. |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | 1.0 (1.7 or earlier) | (Yes) | (Yes) | (Yes) |
ch and chOff
| ? | (Yes) | (Yes) | ? | ? | ? |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | 1.0 (1.0) | (Yes) | (Yes) | (Yes) |
ch and chOff
| ? | (Yes) | (Yes) | ? | ? | ? |
<th>
and <td>
by inheritance via HTMLTableHeaderCellElement
and HTMLTableDataCellElement
.
© 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/API/HTMLTableCellElement