Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何更改在模型类中具有属性的任何标签或复选框的 css 类,当我创建局部视图时,我只想更改 mVC3 中该特定标签的 css 类。
你可以做这样的事情。
<label class="textlabel">@Html.LabelFor(model => model.Property) :</label>
为该类定义 css。
.textlabel { font-weight: bold; color: #f8971d; float: right; }