dom / latest / csspagerule / selectortext.html /

CSSPageRule.selectorText

The selectorText property of the CSSPageRule interface gets and sets the selectors associated with the CSSPageRule.

Value

Examples

The stylesheet includes two @page rules. The selectorText property will return the literal selector text of :first as a string.

@page {
  margin: 1cm;
}

@page :first {
  margin: 2cm;
}
let myRules = document.styleSheets[0].cssRules; //returns two myRules
console.log(myRules[1].selectorText); // returns the string ":first"

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
selectorText
1
12
No
9
≤12.1
3
1
18
No
≤12.1
1
1.0

© 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/CSSPageRule/selectorText