Adjust the Hover State of an Anchor Tag test mistake

Tell us what’s happening:
Hi, this challenge won’t let me pass the first test ( The anchor tag color should remain black…) even if I reset the challenge and test it right away. This happens in both Chrome, the one I’m using, and Firefox. In Microsoft Edge I get a pass in both tests thus succeeding in the challenge.
Thanks.

Your code so far


<style>
a {
  color: #000;
}
a:hover {
  color: blue;
}



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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36.

Challenge: Adjust the Hover State of an Anchor Tag

Link to the challenge:

Your code is passing for me in both Firefox and Chrome.

Make sure you do not have any extensions running that change colors on the page (dark mode/reader extension). You can use the dark theme found under your profile settings instead.

1 Like

Oops indeed it’s a dark mode extension I have in both browsers, just deactivated them. Thanks for the help :slight_smile:

1 Like