本文介绍了造型ASP.NET MVC的验证错误?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
能否ASP.NET MVC的验证错误的样式?哪里?
我试着编辑。输入验证错误类的site.css,但没有任何效果。
Can ASP.NET MVC's validation errors be styled? Where?I tried editing .input-validation-error class in Site.css but that didn't have any effect.
POM
推荐答案
如果你的风格了点域验证错误
那么这将改变验证错误文本消息。
If you style up .field-validation-error
then this will change the validation error text messages.
.field-validation-error{ color: red; font-weight: bold; }
如果你的风格了。输入验证错误
那么这将改变输入方式时,有一个验证错误。
If you style up .input-validation-error
then this will change the input style when there is a validation error.
.input-validation-error{ background: pink; border: 1px solid red; }
这篇关于造型ASP.NET MVC的验证错误?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!