我怎么能写这个所以它针对两个元素而不用写两次
.field_with_errors input{
color: red;
background: #CEF6EC;
border: 1px solid red;
}
.field_with_errors select{
color: red;
background: #CEF6EC;
border: 1px solid red;
}
这不起作用
.field_with_errors select input{
color: red;
background: #CEF6EC;
border: 1px solid red;
}