Bug in html-css? =(

Cuéntanos qué está pasando:
Describe tu problema en detalle aquí.
i’ve done everything according to the procedure, however I get an error I cannot find where = (

  **Tu código hasta el momento**

<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>
  **Información de tu navegador:**

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36

Desafío: Utiliza selectores CSS para dar estilo a elementos

Enlaza al desafío:

I pasted your code in and it passed for me. What error are you getting?

// running tests
Your h2 element should be blue.
// tests completed

You most likely have some extensions installed in your browser that are preventing the color change from working. Be sure to disable those extensions before running the tests or use a different browser that doesn’t have any extensions.

thank you so much, its solved =) it was an extension for dark mode on chrome

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