When I submit to check my code, it gives me this message:
You should add a
:focuspseudo-class to theinputandtextareaelements to change their border color when focused. Use a list selector in the given order.
I have added a focus to my list selector of input and textarea with the color change when focused. I must be missing something or misinterpreting?
Also to note, it works in my preview. When I focus on an input and textarea, the border changes to the color purple as written in my css below.
input, textarea:focus{
border-color: purple;
}