在7.3.3部分中,class="form_control"
的所有输入字段都嵌套在带有class="field_with_errors"
should be colored red的div中。但this is我得到了什么。
custom.scss
包括:
#error_explanation {
color: red;
ul {
color: red;
margin: 0 0 30px 0;
}
}
.field_with_errors {
@extend .has-error;
.form-control {
color: $state-danger-text;
}
}
正如您从screenshot #error_explanation
中看到的那样,.field_with_errors
没有效果。
它可能有什么问题?
链接到Heroku:https://daytonaraceway.herokuapp.com/signup
由于
答案 0 :(得分:0)
html模板的代码中存在拼写错误,因此将输入字段class: 'form_control'
更改为class: 'form-control'
解决了问题