CSSPseudoElement.element
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.
Syntax
var originatingElement = cssPseudoElement.element;
Value
An Element
representing the pseudo-element's originating element.
Examples
The example below demonstrates the relationship between CSSPseudoElement.element
and Element.pseudo()
:
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 (CSS Pseudo-Elements 4) # dom-csspseudoelement-element |
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 | |
element |
No |
No |
75
67-75
63-67
|
No |
No |
No |
No |
No |
67-79
63-67
|
No |
No |
No |
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/CSSPseudoElement/element