Learn Accessibility by Building a Quiz - Step 60

Tell us what’s happening:

Your code so far

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux i686; rv:91.0) Gecko/20100101 Firefox/91.0

Challenge: Learn Accessibility by Building a Quiz - Step 60

Link to the challenge:

.answers-list {
list-style: none;
}
ul {
padding: 0;
}
This is as far as i could go but it,the problem is with the “.answers-list” styling,i really don’t know where i keep getting it wrong

You have it mostly correct. However when you selected .answers-list you also selected its children. So you don’t need a separate selector for the ul.

Something like this? because if so it still does not pass…

.answers-list {
list-style: none;
padding: 0;
}

What you have should be passing, it passed on my end. I would reset the step , you may have accidentally changed something else, and try again. If it still doesn’t work your browser may need updating or an extension may be interfering with fCC itself.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.