How can I change css directly(without variable) in Blazor?
问题 I am using the server-side of Blazor. I want to change the CSS of the body. In Jquery I can write the code like this easily: $("body").css("overflow-y","hidden"); However, with this tutorial(Blazor Change Validation default css class names) said, it seems I can only change the CSS by changing the class name. It is so complex while crossing the component, especially the body is at the top of all the components. I wonder whether there is a way can changes CSS directly in Blazor. Thank you. 回答1: