在mvc中的现场定位

时间:2016-06-28 21:48:54

标签: css razor html-helper

我正在尝试将这些文本字段放在彼此旁边,并按以下格式使用它们:

(______) _____ - _____

我的主要问题是让他们彼此相邻。有人对我该做什么有任何建议吗?

这是我到目前为止的代码:

<label style="margin: 5px" id="lblPhoneNumber">Phone Number (optional)</label>
<p>
    @Html.ValidationMessageFor(model => model.Pharmacy.PhoneNumber)
    @Html.TextBoxFor(model => model.Pharmacy.AreaCode, new { style="width:3em", maxlength=3}) 
    @Html.TextBoxFor(model => model.Pharmacy.PhoneNumberFirstThree, new { style="width:3em", maxlength = 3 })
    @Html.TextBoxFor(model => model.Pharmacy.PhoneNumberLastFour, new { style="width:4em", maxlength = 4 })
</p>

1 个答案:

答案 0 :(得分:0)

会是这样的。您需要为所有三个文本框执行此操作:

@Html.TextBox("Something", @Model.text, new {style = "display: inline-block;float:left"})