Step 55 Learn Accessibility by Building a Quiz -

Tell us what’s happening:

Step 55 of Responsive Web Development-Learn Accessibility by Building a Quiz is Incorrect!
I keep trying type in the correct code for several times, I even copy and paste from the next step, and it still shows it does not pass(the selector is “not” correct).

Your code so far

<!-- file: index.html -->

/* file: styles.css */
/* User Editable Region */

.info input {
  width: 50%;
  text-align: left;
}

/* User Editable Region */

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36

Challenge Information:

Learn Accessibility by Building a Quiz - Step 55

Hi there and welcome to our community!

Your code for this step is correct, but perhaps you’ve lost the closing curly bracket from the selector above?

Can you share your complete CSS code please?

1 Like

Yes! here is my code, it keeps showing the selector is not correct, I literally copy and paste again and again from the reminder but still incorrect. Do not understand why. :roll_eyes:

.info input {
width:50%;
text-align:left;
}

You should use either the .info input or .info > input selector.

We need to see your full CSS code.