Basic CSS Task 80 Building a Cafe Menu

Hello,
I have tried to figure this out as much as I could to no avail.

Here is the task:
<<<# Step 80

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.>>>


Has anyone been able to solve this?
What did you do? Can you explain your answer?

Thank you!

Hi, please include your code. I and others in the forum can’t see what you’re doing wrong without your code to check for the error.

When pasting it, highlight the code and press this </> button between the two quote marks and image symbol, it will format the code to make it easier to read.

Here is a gif that explains that process.

Someone just helped me with this. a is the element so the code should look like this.

a {
color: “value”
}

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