CSSPseudoElement: element property
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The element
read-only property of the
CSSPseudoElement
interface returns a reference to the originating element
of the pseudo-element, in other words its parent element.
Value
An Element
representing the pseudo-element's originating element.
Examples
The example below demonstrates the relationship between
CSSPseudoElement.element
and Element.pseudo()
:
js
const myElement = document.querySelector("q");
const cssPseudoElement = myElement.pseudo("::after");
const originatingElement = cssPseudoElement.element;
console.log(myElement === originatingElement); // Outputs true
console.log(myElement.parentElement === originatingElement); // Outputs false
console.log(myElement.lastElementChild === cssPseudoElement); // Outputs false
console.log(myElement.lastChild === cssPseudoElement); // Outputs false
console.log(myElement.nextElementSibling === cssPseudoElement); // Outputs false
console.log(myElement.nextSibling === cssPseudoElement); // Outputs false
Specifications
Specification |
---|
CSS Pseudo-Elements Module Level 4 # dom-csspseudoelement-element |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
element |
Legend
Tip: you can click/tap on a cell for more information.
- No support
- No support
- Experimental. Expect behavior to change in the future.
- User must explicitly enable this feature.
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.