Css h2 style cannot move forward [SOLVED]

**Tell us what’s happening: Just cannot move on from this previously documented problem, I’ve tried all avenues to get this done, I can see my h2 going blue, can change the colour and all works, I just cannot proceed

h2 { color: blue; }

CatPhotoApp



<style>
h2 {
color: blue;  
}
</style>

<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<div>
  <p>Things cats love:</p>
  <ul>
    <li>cat nip</li>
    <li>laser pointers</li>
    <li>lasagna</li>
  </ul>
  <p>Top 3 things cats hate:</p>
  <ol>
    <li>flea treatment</li>
    <li>thunder</li>
    <li>other cats</li>
  </ol>
</div>

<form action="https://freecatphotoapp.com/submit-cat-photo">
  <label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
  <label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
  <label><input type="checkbox" name="personality" checked> Loving</label>
  <label><input type="checkbox" name="personality"> Lazy</label>
  <label><input type="checkbox" name="personality"> Energetic</label><br>
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
</main>
  **Your browser information:**

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

Challenge: Use CSS Selectors to Style Elements

Link to the challenge:

Hey there, I just copy and pasted your code and it worked perfectly fine and proceeded to the next stage. You should be able to pass this stage, as the code works completely fine and you did exactly what you were told.

do you have a dark mode extension? that’s a common reason for while the css tests fail

I copied your code into the challenge and it works fine for me. and it should work for you too.
So I’m not sure why you can’t pass the challenge.

It seems that all is correct with u’re code. Try to reset ur code and rewrite it. I hope u can proced

Did you have any extensions? such as dark mode (or) ad blocker because this the common reason for the failing of the test and also make sure you have your browser’s zoom to 100% because your code passes for me.

Hope this Helps

Yes I thinkn that was the problem, darkmode, I moved over to another browser to skip the problem : ) Thanks all for oyur helps : )

uhu, indeed this was the problem thank you for replying

Yeah I did that a few times, I’ve had to do it since also, its a bit buggy this is lol

Thanks bro, I really appreciate your help

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