New responsive web design - Step 80

I’m stuck on the Step 80, but it looks like a I’ve done correctly…

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.

Your code so far

a:visited {
  color: black;
}

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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.1 Safari/605.1.15

Challenge: Step 80

Link to the challenge:

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.

The color should not depend upon if the anchor link has been visited or not. Your style does depend upon if the anchor link has been visited.

1 Like

This code should be working.
Mod Edit: SOLUTION REDACTED

2 Likes

Just like this… thanks!!

1 Like

Thanks for your support!! :slight_smile:

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

3 Likes

if we add the simple tag with a color so it is worked.
Mod Edit: SOLUTION REDACTED
your answer is step 81 instead of 80.

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

just remove “:visited”

3 Likes

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