Skip to main content

no-unknown-custom-properties

禁止未知的自定义属性。

¥Disallow unknown custom properties.

a { color: var(--foo); }
/** ↑

* This custom property */

a { color: var(--foo, var(--bar)); }
/** ↑

* And this one */

此规则认为同一源中定义的自定义属性是已知的。

¥This rule considers custom properties defined within the same source to be known.

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

¥The message secondary option can accept the arguments of this rule.

选项

¥Options

true

以下模式被视为问题:

¥The following patterns are considered problems:

a { color: var(--foo); }
a { color: var(--foo, var(--bar)); }

以下模式不被视为问题:

¥The following patterns are not considered problems:

a { --foo: #f00; color: var(--foo); }
a { color: var(--foo, #f00); }
a { --foo: #f00; color: var(--bar, var(--foo)); }
@property --foo { syntax: "<color>"; inherits: false; initial-value: #f00; }
a { color: var(--foo); }