Use CSS Selectors to Style Elements - Bugged?

Tell us what’s happening:

image
Your code so far

<style> 
  h2{Color: Blue;}
</style>

<h2>CatPhotoApp</h2>

<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>

Your browser information:

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

Link to the challenge:
https://www.freecodecamp.org/challenges/use-css-selectors-to-style-elements

Generally CSS selectors are case-insensitive but it seems this system wants you to match the lowercase variant of those.

If you make it h2{color:blue;} it seems to work, at least for me. It is also best practice to use lowercase variants of selectors and attributes.

1 Like

Worked perfectly! Thank you, I was completely stumped there.