I've create MVC5 App which generate from my model by scaffold the view and controller currently the default size of the text box are 18 character and I want it to be 5 ,how should I reduce the default size of the text box?
<div class="form-group">
@Html.LabelFor(model => model.num, new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.Nun)
@Html.ValidationMessageFor(model => model.Num)
</div>
</div>
I've tried without success with
@Html.EditorFor(model => model.Nun, new { @style = "width: 100px;" })