Back to Content

CSSPageRule: selectorText property

files/en-us/web/api/csspagerule/selectortext/index.md

latest614 B
Original Source

{{APIRef("CSSOM")}}

The selectorText property of the {{domxref("CSSPageRule")}} interface gets and sets the selectors associated with the CSSPageRule.

Value

A string.

Examples

The stylesheet includes two {{cssxref("@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
const myRules = document.styleSheets[0].cssRules; // Two myRules
console.log(myRules[1].selectorText); // ":first"

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}