CSSPageRule: selectorText property
The selectorText
property of the CSSPageRule
interface gets and sets the selectors associated with the CSSPageRule
.
Value
A string.
Examples
The stylesheet includes two @page
rules. The selectorText
property will return the literal selector text of :first
as a string.
css
@page {
margin: 1cm;
}
@page :first {
margin: 2cm;
}
js
let myRules = document.styleSheets[0].cssRules; //returns two myRules
console.log(myRules[1].selectorText); // returns the string ":first"
Specifications
Specification |
---|
CSS Object Model (CSSOM) # dom-csspagerule-selectortext |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
selectorText |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
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.