值
字串。
示例
此樣式表包含兩個 @page 規則。selectorText 屬性將以字串形式返回字面選擇器文字 :first。
css
@page {
margin: 1cm;
}
@page :first {
margin: 2cm;
}
js
const myRules = document.styleSheets[0].cssRules; // Two myRules
console.log(myRules[1].selectorText); // ":first"
規範
| 規範 |
|---|
| CSS 物件模型 (CSSOM) # dom-csspagerule-selectortext |
瀏覽器相容性
載入中…