I have problems with getting a CSS file places behind a Razor component to work.
I have 3 files:
- Index.razor
- Index.razor.cs
- Index.razor.css
but the css in the .css file is not used in the Index.razor page
Do I need to switch anything one or how do i make it work?
Indexfile content:
@page "/"@namespace TestCSSIsolation.Pages<h1>Hello, world!</h1><input value="@value" /><button @onclick="@OnClick_Button">Click</button>.cs file content:
namespace TestCSSIsolation.Pages;public partial class Index{ private string value = string.Empty; private void OnClick_Button() { if (value.Trim().Length > 0) { value = string.Empty; } else { value = "Test"; } }}.css file content:
body { border: solid 10px red;}button { background-color: pink;}input { background-color: lightblue;}Unfortunately I not allowed to post pictures here, but the result when I run the application is that the styling in the CSS file is not used on the component.