CSSPseudoElement: type property
The type
read-only property of the CSSPseudoElement
interface returns the type of the pseudo-element as a string, represented in the form of a CSS selector.
Value
A string containing one of the following values:
Examples
The example below demonstrates the relationship between CSSPseudoElement.type
and Element.pseudo()
:
const myElement = document.querySelector("q");
const mySelector = "::after";
const cssPseudoElement = myElement.pseudo(mySelector);
const typeOfPseudoElement = cssPseudoElement.type;
console.log(mySelector === typeOfPseudoElement);
Specifications
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 |
type |
No |
No |
75 |
No |
No |
No |
No |
No |
No |
No |
No |
No |
See also