I am trying to make a form in which the required input is lager. And that default <input ="text">
size is not enough. I tried size=""
and also width=""
but it is not giving any change. I am using asp.net core default website templates. Is there any size limit? If there is, how can I change it? Please help me to change the size of the textbox.
<input asp-for="Title" class="form-control" style="min-width:100%"/>
I added style ="min-width:100%"
as shown above and it worked.