在我的 CSS 中,我定义了以下内容:
.required:before
{
content: "*";
font-weight: bold;
color: Red;
}
在我看来,以下几点:
<div class="editor-label required">
Customer Group
</div>
<div class="editor-field">
@Html.DropDownList("GroupId", "")
@Html.ValidationMessageFor(Function(model) model.GroupId)
</div>
但是当我运行视图时,它会放一个星号,然后在下一行标签上,我希望它们在同一行。有任何想法吗?