CSSPageRule.selectorText

Baseline 2023
Newly available

Since February 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.

selectorTextCSSPageRule インターフェイスのプロパティで、この CSSPageRule に関連付けられたセレクターを取得および設定します。

文字列で宇s。

このスタイルシートは 2 つの @page ルールを含んでいます。 selectorText プロパティは、:first のセレクターテキストを文字列として返します。

css
@page {
  margin: 1cm;
}

@page :first {
  margin: 2cm;
}
js
let myRules = document.styleSheets[0].cssRules; // 2 つの myRules を返す
console.log(myRules[1].selectorText); // ":first" という文字列を返す

仕様書

Specification
CSS Object Model (CSSOM)
# dom-csspagerule-selectortext

ブラウザーの互換性