Blazor
A free and open-source web framework that enables developers to create web apps using C# and HTML being developed by Microsoft.
978 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I can use @ to directly set value with a blazor variable on css style in a razor component.
Like:
But how can I achieve the same thing in a isolation razor component css?
As the css is a static file you can not. Also the CSS file will only load once, so you can not change after load.
Maybe you want to use SASS to build the css file.