Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardCSSscopeSingle-choice MCQ

`@scope` introduces scoping with a lower and upper boundary (donut scope). Beyond limiting matching, how does `@scope` proximity affect the cascade, and at what point is it applied?

@scope (.card) { .title { color: red; } } @scope (.card .featured) { .title { color: blue; } } /* a .title that is inside .card .featured */