CSSCounterStyleRule: negative property - Web APIs | MDN
Value
A string.
Examples
The following example shows a @counter-style rule. In JavaScript, myRules[0] is this @counter-style rule, returning negative gives us the value "-".
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); // "-"
Specifications
| Specification |
|---|
| CSS Counter Styles Level 3 # dom-csscounterstylerule-negative |