# unit-no-unknown Disallow unknown units. ```css a { width: 100pixels; } /** ↑ * These units */ ``` This rule considers units defined in the CSS Specifications, up to and including Editor's Drafts, to be known. The [`message` secondary option](../../../docs/user-guide/configure.md#message) can accept the arguments of this rule. ## Options ### `true` The following patterns are considered problems: ```css a { width: 10pixels; } ``` ```css a { width: calc(10px + 10pixels); } ``` The following patterns are _not_ considered problems: ```css a { width: 10px; } ``` ```css a { width: 10Px; } ``` ```css a { width: 10pX; } ``` ```css a { width: calc(10px + 10px); } ``` ## Optional secondary options ### `ignoreUnits: ["/regex/", /regex/, "string"]` Given: ```json ["/^--foo-/", "--bar"] ``` The following patterns are _not_ considered problems: ```css a { width: 10--foo--baz; } ``` ```css a { width: 10--bar; } ``` ### `ignoreFunctions: ["/regex/", /regex/, "string"]` Given: ```json ["foo", "/^my-/", "/^YOUR-/i"] ``` The following patterns are _not_ considered problems: ```css a { width: foo(1x); } ``` ```css a { width: my-func(1x); } ``` ```css a { width: YoUr-func(1x); } ```