CSSCounterStyleRule:symbols 属性

CSSCounterStyleRule 接口的 symbols 属性用于获取或设置 symbols 描述符的值。如果描述符没有设置值,此属性返回空字符串。

字符串

示例

以下示例展示了 @counter-style 样式的规则。在 JavaScript 中,myRules[0]@counter-style 规则,symbols 返回值为“◰ ◳ ◲ ◱”。

css
@counter-style box-corner {
  system: fixed;
  symbols: ◰ ◳ ◲ ◱;
  suffix: ": ";
  negative: "-";
}
js
let myRules = document.styleSheets[0].cssRules;
console.log(myRules[0].symbols); // "◰ ◳ ◲ ◱"

规范

Specification
CSS Counter Styles Level 3
# dom-csscounterstylerule-symbols

浏览器兼容性

BCD tables only load in the browser