Learn Accessibility by Building a Quiz - Step 45

To anyone who can help, am I doing something wrong here?

Your code so far

li > a{
	a { 
		color: #ffffff;
	} 
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71

Challenge: Learn Accessibility by Building a Quiz - Step 45

Link to the challenge:

You’ve nested a rule set within a rule set, which you can’t do in CSS. The original selector (li > a) is already targeting anchors inside of list items, so you don’t need to add any more selectors. You just need to change the text color to something more accessible.

1 Like

Thanks for telling me that. I’ll try to remember that for the future, thx.

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