Problem with: Adjust the Hover State of an Anchor Tag

Tell us what’s happening:

Hi,

What’s wront with my code please??I kept searching for 20 minutes. Culdn’t find the issue. Sorry for the inconvenience.I coded what the exercise asked me for. No more, no less.

Your code so far


<style>
  a:hover {
    color: blue;
  }
  
  
</style>
<a href="http://freecatphotoapp.com/" target="_blank">CatPhotoApp</a>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.0) Gecko/20100101 Firefox/52.0.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/adjust-the-hover-state-of-an-anchor-tag

You added the a:hover rule, but removed the existing a rule.

Please Don’t remove the existing code which adds style to a tag


a
{ color:#000;
}
a:hover
{ color:blue;
}

Thanks. I also noticed that with the new FCC interface one cannot bypass an exercice like before. One has to go into the Curriculum and bypass it manually. A slight pain in the *ss, but it’s allright :slight_smile: