CSS ErrorsError
Missing semicolonMissing Semicolon
A semicolon is missing at the end of a CSS declaration.
browser
View details Unrecognized at-ruleThe CSS parser does not recognize the @-rule.
The at-rule name is misspelled or not supported by the browser. Modern at-rules like @container, @layer, and @property may not be supported in older browsers.
Check the at-rule name for typos. Verify browser support for the at-rule. Use fallback styles for unsupported at-rules. Consider a PostCSS plugin for transpilation.
@tailwind base;Missing semicolonA semicolon is missing at the end of a CSS declaration.
Invalid media queryThe media query syntax is not valid.
Unknown propertyThe CSS property name is not recognized by the browser.
z-index stacking contextElements are not layering as expected despite z-index values being set.
:has() unsupportedThe browser does not support the :has() pseudo-class.
Font loading failedA web font could not be loaded from the specified URL.