【发布时间】:2018-08-16 14:54:05
【问题描述】:
我有 NewCustomer 视图:
<table class="table">
<tr>
<td class="text-right">
@Html.LabelFor(model => model.Customer.GenderId)
</td>
<td>
@Html.DropDownListFor(model => model.Customer.GenderId,new SelectList(Model.Genders,"Id", "GenderType"),"-=Select Title=-")
</td>
</tr>
<tr>
<td class="text-right">
@Html.LabelFor(model => model.Customer.Name)
</td>
<td>
@Html.TextBoxFor(model => model.Customer.Name)
</td>
</tr>
</table>
我可以将宽度下拉列表和文本框与 boostrap 类对齐吗?
【问题讨论】:
标签: model-view-controller view width dropdownlistfor html.textboxfor