I'm exploring ways to customize a Blazor EditForm using CSS or other methods. I want to adjust the position, width, height, etc., but not sure if it's possible.
Unfortunately, assigning a class or ID directly to the EditForm element doesn't seem to work.
<EditForm Model="@esuper">
<label for="Firstname">First Name</label>
<InputText id="firstname" @bind-Value="firstName"></InputText>