Nos bénévoles n'ont pas encore traduit cet article en Français. Inscrivez-vous et aidez-nous à réaliser cette tâche !
Vous pouvez également lire cet article en English (US).
Deprecated
This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
The HTMLTableHeaderCellElement
interface provides special properties and methods (beyond the regular HTMLTableCellElement
and HTMLElement
interfaces it also has available to it by inheritance) for manipulating the layout and presentation of table header cells in an HTML document.
<div id="interfaceDiagram" style="display: inline-block; position: relative; width: 100%; padding-bottom: 20%; vertical-align: middle; overflow: hidden;"><svg style="display: inline-block; position: absolute; top: 0; left: 0;" viewbox="-50 0 600 120" preserveAspectRatio="xMinYMin meet"><a xlink:href="https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableHeaderCellElement" target="_top"><rect x="1" y="1" width="260" height="50" fill="#F4F7F8" stroke="#D4DDE4" stroke-width="2px" /><text x="131" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">HTMLTableHeaderCellElement</text></a></svg></div>
a:hover text { fill: #0095DD; pointer-events: all;}
Properties
Inherits properties from its parent, HTMLTableCellElement
, and HTMLElement
.
HTMLTableHeaderCellElement.abbr
- Is a
DOMString
containing a name used to refer to this cell in other context. It reflects theabbr
attribute. HTMLTableHeaderCellElement.scope
- Is a
DOMString
representing an enumerated value indicating which cells the header cell applies to. It reflects thescope
attribute and has one of the following values:"row"
,"col"
,"colgroup"
, or"rowgroup"
. If the attribute is in the auto state, or if an invalid value is set for the attribute,scope
will be returns the empty string,""
. HTMLTableHeaderCellElement.sorted
- Is a
Boolean
value indicating if the table is sorted by the scope associated with this header cell. It reflects thesorted
attribute.
Methods
No specific method; inherits methods from its parent, HTMLTableCellElement
, and HTMLElement
.
Browser compatibility
Desktop | Mobile | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Basic support | Chrome
No support
No
| Edge
No support
No
| Firefox
No support
No
| IE Full support Yes | Opera
No support
No
| Safari
No support
No
| WebView Android
No support
No
| Chrome Android
No support
No
| Edge Mobile
No support
No
| Firefox Android
No support
No
| Opera Android
No support
No
| Safari iOS
No support
No
| Samsung Internet Android ? |
abbr | Chrome
No support
No
| Edge
No support
No
| Firefox
No support
No
| IE Full support Yes | Opera
No support
No
| Safari
No support
No
| WebView Android
No support
No
| Chrome Android
No support
No
| Edge Mobile
No support
No
| Firefox Android
No support
No
| Opera Android
No support
No
| Safari iOS
No support
No
| Samsung Internet Android ? |
scope | Chrome
No support
No
| Edge
No support
No
| Firefox
No support
No
| IE Full support Yes | Opera
No support
No
| Safari
No support
No
| WebView Android
No support
No
| Chrome Android
No support
No
| Edge Mobile
No support
No
| Firefox Android
No support
No
| Opera Android
No support
No
| Safari iOS
No support
No
| Samsung Internet Android ? |
sorted | Chrome No support No | Edge No support No | Firefox No support No | IE No support No | Opera No support No | Safari No support No | WebView Android No support No | Chrome Android No support No | Edge Mobile No support No | Firefox Android No support No | Opera Android No support No | Safari iOS No support No | Samsung Internet Android ? |
Legend
- Full support
- Full support
- No support
- No support
- Compatibility unknown
- Compatibility unknown
- Non-standard. Expect poor cross-browser support.
- Non-standard. Expect poor cross-browser support.
- Deprecated. Not for use in new websites.
- Deprecated. Not for use in new websites.
- See implementation notes.
- See implementation notes.
See also
- The HTML element implementing this interface:
<th>
.