早晨
当我已经为输入框设置了一个类时,我无法让输入验证错误 css 工作。
<%=Html.TextBox("FirstName", null, new { @Class = "text" })%>
<%=Html.ValidationMessage("FirstName", new { @style = "color: red;", @Class = "errorInValid" })%>
如果我取出 new { @Class = "text" } 那么
.input-validation-error
{
border: 1px solid #ff0000 !important;
background-color: red !important;
}
上面的 CSS 有效。
帮助
问候,皮特
在此先感谢(我在 CSS 上很垃圾)