Blazor CSS Isolation

Hello,

I realized that the used controls on components do not inherit the CSS scope within a component. Did I miss any settings? I solved this problem by using the ::deep pseudo-selector, but for me, it looks more like a workaround.

Could you tell me if this behavior is by design or an issue?

Thanks,
Christian

This ends up that the css in the isolated CSS file related to the component not applied to the radzen controls..Only if I add the ::deep pseudo selector.

That's by design and even mentioned in the Blazor CSS isolation documentation: ASP.NET Core Blazor CSS isolation

Thanks for clarification! :slight_smile: