Can't Progress in the "Applied Visual Design" chapter

Tell us what’s happening:
I keep failing the test even though the solution is correct.
The error I am getting is:

// running tests
The anchor tag color should remain black, only add CSS rules for the :hover state.
// tests completed
  **Your code so far**

<style>

a:hover {
color: blue;
}

a {
  color: #000;
}

</style>
<a href="https://freecatphotoapp.com/" target="_blank">CatPhotoApp</a>
  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Firefox/91.0

Challenge: Adjust the Hover State of an Anchor Tag

Link to the challenge:

Your code passes when I try it. Usually in these circumstances they advise that you may have add blockers or something intefering with the test. Or try setting your browser zoom level to 100.
Certainly the code is good

1 Like

I had already disabled ublock origin but Dark Reader was actually the culprit. Thanks for your quick reply.

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