Missing semicolonMissing Semicolon
A semicolon is missing at the end of a CSS declaration.
Unexpected tokenThe CSS parser encountered an unexpected character or token.
The stylesheet contains invalid syntax such as a misplaced character, invalid selector syntax, or malformed property value. JavaScript syntax accidentally mixed into CSS can cause this.
Check for syntax errors near the reported location. Ensure values are in valid CSS format. Remove any non-CSS syntax. Validate the stylesheet with a CSS linter.
Missing semicolonA semicolon is missing at the end of a CSS declaration.
Invalid color functionA CSS color function (rgb, hsl, oklch, etc.) has invalid syntax.
@font-face format errorThe @font-face declaration has an invalid format or missing properties.
Invalid calc() expressionThe calc() function has a syntax error.
Invalid property valueThe value assigned to a CSS property is not valid for that property.
CSS Paint API errorA CSS Paint Worklet failed to render or register.