CSS 에러경고
Unknown propertyUnknown Property
The CSS property name is not recognized by the browser.
browser
상세 보기 Shorthand property overrideA CSS shorthand property resets values previously set by longhand properties.
Shorthand properties (like margin, background, font) reset all their sub-properties to initial values. If you set margin-top first and then margin, the margin-top value is overridden.
Place shorthand properties before longhand overrides. Use longhand properties for individual values. Be aware that shorthand resets unspecified sub-properties.
div {
margin-top: 10px;
margin: 0; /* overrides margin-top */
}Unknown propertyThe CSS property name is not recognized by the browser.
Invalid clamp() syntaxThe clamp() function has incorrect syntax or parameters.
Scroll snap not workingCSS scroll snapping is not behaving as expected.
CSS nesting unsupportedThe browser does not support native CSS nesting syntax.
Invalid selectorThe CSS selector syntax is not valid.
Invalid calc() expressionThe calc() function has a syntax error.