Cant pass this, no puedo pasar esto

Cuéntanos qué está pasando:
Describe tu problema en detalle aquí.
“Tu elemento form debe tener background-color de color verde (green).” me dice que no es verde pero si lo es, y en el video esta exactamente igual, ya no se que hacer

   **Tu código hasta el momento**

<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">

<style>

 .red-text {
   color: red;
 }
#heading { 
 background-color:green;
  }
 h2 {
   font-family: Lobster, monospace;
 }

 p {
   font-size: 16px;
   font-family: monospace;
 }

 .thick-green-border {
   border-color: green;
   border-width: 10px;
   border-style: solid;
   border-radius: 50%;
 }

 .smaller-image {
   width: 100px;
 }

 .silver-background {
   background-color: silver;
 }
#cat-photo-form {background-color: green}  
</style>

<h2 class="red-text">CatPhotoApp</h2>
<main>
 <p class="red-text">Click here to view more <a href="#">cat photos</a>.</p>
 
 <a href="#"><img class="smaller-image thick-green-border" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
 
 <div class="silver-background">
   <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="submit-cat-photo" id="cat-photo-form">
   <h2 class="green-background"> 
   <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; rv:98.0) Gecko/20100101 Firefox/98.0

Desafío: Usa un atributo de id para aplicar estilo a un elemento

Enlaza al desafío:

1 Like

Your code passes for me.

Make sure you don’t have dark mode or night mode on or blue filtering or anything else that messes with colors. Also, there are some browser extensions that can mess with tests.

If that doesn’t work, reboot, clear the browser cache, try a different browser…

If none of that work, just back out of this challenge and move onto the next one.

1 Like

u are the best bro, ty