asp.net-mvc How to change width Html.TextBox

前端 未结 5 1480
遥遥无期
遥遥无期 2020-12-31 01:25

how do you change the width of a textbox in an asp.net-mvc View

i want to have these fields side by side and the state textbox much shorter width

            


        
5条回答
  •  生来不讨喜
    2020-12-31 02:09

    If using the default MVC template that ships with VS. Explictly specifying a class in the html attributes of the textbox doesn't seem to override Site.css, however, an inline style does work. So:

    {@style= "width: 400px;"} 
    

    will work, whereas this wont:

    {@class="myclass"}
    

提交回复
热议问题