#custom-property-pattern

指定自定义属性的模式。

a { --foo-: 1px; }
/**   ↑
 * 这种模式 */

#选项

regex|string

字符串将被翻译成一个正则表达式,就像 new RegExp(yourString) ———— 所以一定要正确转义。

给定字符串:

"foo-.+"

以下模式被视为违规:

:root { --boo-bar: 0; }

以下模式被视为违规:

:root { --foo-bar: 0; }