HTMLTableRowElement
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.
Properties
Inherits properties from its parent, HTMLElement
.
-
HTMLTableRowElement.cells
Read only -
Returns a live
HTMLCollection
containing the cells in the row. TheHTMLCollection
is live and is automatically updated when cells are added or removed. -
HTMLTableRowElement.rowIndex
Read only -
Returns a
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 -
Returns a
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
.
Methods
Inherits methods from its parent, HTMLElement
.
HTMLTableRowElement.deleteCell()
-
Removes the cell at the given position in the row. If it is equal to
-1
, it deletes the last cell of 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 aDOMException
with theIndexSizeError
value. HTMLTableRowElement.insertCell()
-
Inserts a new cell just before the given position in the row. If the given position is not given or is
-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 aDOMException
with theIndexSizeError
value. Returns a reference to aHTMLTableCellElement
.
Deprecated properties
Warning: These properties have been deprecated and should no longer be used. They are documented primarily to help understand older code bases.
-
HTMLTableRowElement.align
-
Is a
DOMString
containing an enumerated value reflecting thealign
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
-
Is a
DOMString
containing the background color of the cells. It reflects the obsoletebgcolor
attribute. -
HTMLTableRowElement.ch
-
Is a
DOMString
containing one single character. This character is the one to align all the cell of a column on. It reflects thechar
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
-
Is a
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 byHTMLTableRowElement.ch
. This property was optional and was not very well supported. -
HTMLTableRowElement.vAlign
-
Is a
DOMString
representing an enumerated value indicating how the content of the cell must be vertically aligned. It reflects thevalign
attribute and can have one of the following values:"top"
,"middle"
,"bottom"
, or"baseline"
.
Specifications
Specification |
---|
HTML Standard (HTML) # htmltablerowelement |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
HTMLTableRowElement |
1 |
12 |
1 |
5.5 |
≤12.1 |
3 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
align |
1 |
12 |
1 |
5.5 |
≤12.1 |
3 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
bgColor |
1 |
12 |
1 |
5.5 |
≤12.1 |
3 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
cells |
1 |
12 |
1 |
5.5 |
≤12.1 |
3 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
ch |
1 |
12 |
1 |
6 |
≤12.1 |
3 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
chOff |
1 |
12 |
1 |
6 |
≤12.1 |
3 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
deleteCell |
1 |
12 |
1 |
5.5 |
≤12.1 |
3 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
insertCell |
1 |
12 |
1 |
5.5 |
≤12.1 |
3 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
rowIndex |
1 |
12 |
1 |
5.5 |
≤12.1 |
3 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
sectionRowIndex |
1 |
12 |
1 |
5.5 |
≤12.1 |
3 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
vAlign |
1 |
12 |
1 |
5.5 |
≤12.1 |
3 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
See also
- The HTML element implementing this interface:
<tr>
.
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableRowElement