Learn Basic CSS by Building a Cafe Menu - Step 79

Can somebody please tell me what I’m doing wrong? This code turns the link black, google is telling me I have it right, but it is not. please help lol
Here is the step!!

Step 79

The default color of a link that has not yet been clicked on is typically blue. The default color of a link that has already been visited from a page is typically purple.

To make the footer links the same color regardless if a link has been visited, use a type selector for the anchor element (a) and use the value black for the color property.

Your code so far

a:visited {
color: black;
}

Hey, welcome to our forum. Kindly post your entire code here, the problem might be in other sections of your code.

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