【发布时间】:2013-10-23 14:16:06
【问题描述】:
在 Site.css 中有以下类:
input[type="textbox"].TextBoxAsLabel {
background:#f2f3f3 !IMPORTANT;
}
想要覆盖 Edit.cshtml 中 TextBoxFor 字段的默认背景
@Html.TextBoxFor(model => model.ClientNumber, new {@readonly = "readonly", @class = "TextBoxAsLabel"})
它仍然使用默认的白色背景。我应该改变什么?
【问题讨论】:
-
你用的是什么浏览器?
标签: html css asp.net-mvc html.textboxfor html.textbox