The HTMLTableRowElement
interface provides special properties and methods (beyond the HTMLElement
interface it also has available to it by inheritance) for manipulating the layout and presentation of rows in an HTML table.
Inherits properties from its parent, HTMLElement
.
HTMLTableRowElement.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"
.HTMLTableRowElement.bgColor
DOMString
containing the background color of the cells. It reflects the obsolete bgcolor
attribute.HTMLTableRowElement.cells
Read only
HTMLCollection
containing the cells in the row. The HTMLCollection
is live and is automatically updated when cells are added or removed.HTMLTableRowElement.ch
DOMString
containing one single character. 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.HTMLTableRowElement.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 HTMLTableRowElement.ch
. This property was optional and was not very well supported.HTMLTableRowElement.rowIndex
Read only
long
value which gives the logical position of the row within the entire table. If the row is not part of a table, returns -1
.HTMLTableRowElement.sectionRowIndex
Read only
long
value which gives the logical position of the row within the table section it belongs to. If the row is not part of a section, returns -1
.HTMLTableRowElement.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"
.Inherits methods from its parent, HTMLElement
.
HTMLTableRowElement.deleteCell()
0
, it raises a DOMException
with the IndexSizeError
value.HTMLTableRowElement.insertCell()
-1
, it appends the cell to the row. If the given position is greater (or equal as it starts at zero) than the amount of cells in the row, or is smaller than -1
, it raises a DOMException
with the IndexSizeError
value. Returns a reference to a HTMLTableCellElement [en-US].Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of 'HTMLTableRowElement' in that specification. | Living Standard | No change from HTML5. |
HTML5 The definition of 'HTMLTableRowElement' in that specification. | Recommendation | The parameter of insertCell is now optional and default to -1 . |
Document Object Model (DOM) Level 2 HTML Specification The definition of 'HTMLTableRowElement' in that specification. | Recommendation | The cells , rowIndex , and selectionRowIndex properties are now read-only.The methods insertCell and deleteCell can raise exceptions. |
Document Object Model (DOM) Level 1 Specification The definition of 'HTMLTableRowElement' 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) | No support | ? | ? | ? |
Optional parameter for insertCell and support for the -1 value | ? | (Yes) | 20.0 (20.0) | ? | ? | ? |
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) | No support | ? | ? | ? |
Optional parameter for insertCell and support for the -1 value | ? | (Yes) | 20.0 (20.0) | ? | ? | ? |
<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/API/HTMLTableRowElement