Step 84 HTML-CSS what's going on?

HI @jinglelingdingdong !

Welcome to the forum!

Please provide a link to the challenge you are working on.
Thanks!

Also, it is best to write code directly into the forum instead of posting screenshots.

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

I think step 84 has a bug, please take a look below:

Step 84

To keep with the same color theme you have already been using (black and brown), change the color for when the link is visited to black and use brown for when the link is actually clicked.

And this is my code:

a:active {
  color: brown;
}

a:visited {
  color: black;
}

and it did not pass, what’s going on?

Here is a link to the challenge:

I have tested it on my end it is passing for me.

Have you tried other browsers?
Do you have any browser extensions that could be messing with the test like dark mode?

I changed to light mode, and tried both chrome and safari, both not working, is there anything else I can do? Thanks for helping me out

I would try resetting the lesson and submitting your code again.

I am trying to replicate your issue on my end but it keeps passing for me.

Maybe you need to triple check to make sure all extensions are off.
Or maybe try an incognito window.

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