有人可以帮我解决如何在以下代码中更改编辑框的宽度吗?我尝试了一切,但顽固的编辑框不会改变它的宽度。
<div class="form-group">
@Html.LabelFor(model => model.Category, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.Category, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.Category, "", new { @class = "text-danger" })
</div>
</div>
答案 0 :(得分:0)
试试这个 - 在html属性中包含样式。
@Html.EditorFor(model => model.Category, new { htmlAttributes = new { @class = "form-control", style="width: 10px" } })