CSSCounterStyleRule: negative 属性

基线 2023

新可用

2023 年 9 月起,此功能在最新的设备和浏览器版本上都能使用。此功能可能在较旧的设备或浏览器中无法使用。

negative 属性CSSCounterStyleRule接口获取并设置negative描述符的值。如果描述符没有设置值,则此属性返回一个空字符串。

价值

字符串

例子

以下示例显示了一个@counter-style规则。在 JavaScript 中,myRules[0] 是此 @counter-style 规则,返回 negative 会得到值 "-"。

css
@counter-style neg {
  system: numeric;
  symbols: "0" "1" "2" "3" "4" "5" "6" "7" "8" "9";
  negative: "-";
}
js
let myRules = document.styleSheets[0].cssRules;
console.log(myRules[0].negative); // "-"

规范

规范
CSS 计数器样式级别 3
# dom-csscounterstylerule-negative

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。