CSSCounterStyleRule:系统属性
system
属性是 CSSCounterStyleRule
接口的一个属性,用于获取和设置 system
描述符的值。如果描述符没有设置值,则此属性将返回空字符串。
值
字符串
示例
以下示例显示了一个 @counter-style
规则。在 JavaScript 中,myRules[0]
是此 @counter-style
规则,返回 system
将为我们提供“fixed”的值。
css
@counter-style box-corner {
system: fixed;
symbols: ◰ ◳ ◲ ◱;
suffix: ": ";
}
js
let myRules = document.styleSheets[0].cssRules;
console.log(myRules[0].system); // "fixed"
规范
规范 |
---|
CSS 计数器样式级别 3 # dom-csscounterstylerule-system |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。