跳至主要内容

custom-property-pattern

指定自定义属性的模式。

a { --foo-: 1px; }
/** ↑
* The pattern of this */

message 次要选项 可以接受此规则的参数。

选项

regex|string

字符串将被转换为 RegExp,如下所示 new RegExp(yourString) — 因此请确保正确转义。

给定字符串

"foo-.+"

以下模式被视为问题

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

以下模式不被视为问题

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