【发布时间】:2017-01-02 05:00:28
【问题描述】:
代码如下:
<div class="form-group">
@Html.LabelFor(model => model.Zapremina_motora, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
<div class="input-group">
@Html.EditorFor(model => model.Zapremina_motora, new { htmlAttributes = new { @class = "form-control" } })
<span class="input-group-addon">cc</span>
</div>
@Html.ValidationMessageFor(model => model.Zapremina_motora, "", new { @class = "text-danger" })
</div>
</div>
我遇到的问题是浏览器为我提供了文本框和跨度插件,其中“cc”文本分隔。添加问题的照片。
有人可以帮忙吗?我花了很多时间试图解决这个问题,但找不到解决方案。
问题图片:
【问题讨论】:
标签: html css asp.net-mvc twitter-bootstrap-3