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.
我正在通过数据注释进行 MVC 模型验证,并且我的验证消息显示在输入的右侧,但我想在输入框的下方显示它,就像屏幕截图一样。
所以只要告诉我我需要做什么而不接触 html。谢谢
您可以更改CSS 中field-validation-error的validation-summary-errors类以使它们位于新行上。一种方法是使用display:block样式使它们成为块元素。这是一个示例 CSS:
field-validation-error
validation-summary-errors
display:block
.field-validation-error { display: block; }