Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 1.53 KB

no-invalid-properties.md

File metadata and controls

53 lines (35 loc) · 1.53 KB

no-invalid-properties

Disallow invalid properties.

Background

CSS has a defined set of known properties that are expected to have specific values. While CSS may parse correctly, that doesn't mean that the properties are correctly matched with their values. For example, the following is syntactically valid CSS code:

a {
	display: black;
}

The property display doesn't accept a color for its value, so while this code will parse without error, it's still invalid CSS.

Similarly, as long as a property name is syntactically valid, it will parse without error even if it's not a known property. For example:

a {
	ccolor: black;
}

Here, ccolor is a syntactically valid identifier even though it will be ignored by browsers. Such errors are often caused by typos.

Rule Details

This rule warns when it finds a CSS property that doesn't exist or a value that doesn't match with the property name in the CSS specification (custom properties such as --my-color are ignored). The property data is provided via the CSSTree project.

Examples of incorrect code:

a {
	display: black;
	ccolor: black;
}

body {
	overflow: 100%;
	bg: red;
}

When Not to Use It

If you aren't concerned with invalid properties, then you can safely disable this rule.

Prior Art