Search code examples
c#htmlasp.nettwitter-bootstrapasp.net-core

How to change the size of the textbox, make it long in asp.net core defalut template


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.


Solution

  • <input asp-for="Title" class="form-control" style="min-width:100%"/>
    

    I added style ="min-width:100%" as shown above and it worked.