如何更改文本框宽度MVC4 Bootstrap 3

时间:2017-06-26 19:42:28

标签: asp.net-mvc c#-4.0 twitter-bootstrap-3

有人可以帮我解决如何在以下代码中更改编辑框的宽度吗?我尝试了一切,但顽固的编辑框不会改变它的宽度。

<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>

1 个答案:

答案 0 :(得分:0)

试试这个 - 在html属性中包含样式。

  @Html.EditorFor(model => model.Category, new { htmlAttributes = new { @class = "form-control", style="width: 10px" } })