HTMLTableSectionElement
The HTMLTableSectionElement 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 sections, that is headers, footers and bodies, in an HTML table.
Properties
Inherits properties from its parent, HTMLElement.
-
HTMLTableSectionElement.align -
Is a
DOMStringcontaining an enumerated value reflecting thealignattribute. It indicates the alignment of the element's contents with respect to the surrounding context. The possible values are"left","right", and"center". -
HTMLTableSectionElement.rowsRead only -
Returns a live
HTMLCollectioncontaining the rows in the section. TheHTMLCollectionis live and is automatically updated when rows are added or removed. -
HTMLTableSectionElement.ch -
Is a
DOMStringcontaining one single chararcter. This character is the one to align all the cell of a column on. It reflects thecharand 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. -
HTMLTableSectionElement.chOff -
Is a
DOMStringcontaining 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. -
HTMLTableSectionElement.vAlign -
Is a
DOMStringrepresenting an enumerated value indicating how the content of the cell must be vertically aligned. It reflects thevalignattribute and can have one of the following values:"top","middle","bottom", or"baseline".
Methods
Inherits methods from its parent, HTMLElement.
HTMLTableSectionElement.deleteRow()-
Removes the row at the given position in the section. If the given position is greater (or equal as it starts at zero) than the amount of rows in the section, or is smaller than
0, it raises aDOMExceptionwith theIndexSizeErrorvalue. HTMLTableSectionElement.insertRow()-
Inserts a new row just before the given position in the section. If the given position is not given or is
-1, it appends the row to the end of section. If the given position is greater (or equal as it starts at zero) than the amount of rows in the section, or is smaller than-1, it raises aDOMExceptionwith theIndexSizeErrorvalue.
Specifications
| Specification |
|---|
| HTML Standard (HTML) # htmltablesectionelement |
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 | |
HTMLTableSectionElement |
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 |
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 |
deleteRow |
1 |
12 |
1 |
5.5 |
≤12.1 |
3 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
insertRow |
1 |
12 |
1 |
5.5 |
≤12.1 |
3 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
rows |
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
© 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/HTMLTableSectionElement