Corregir leccion Aprende sobre colores terciarios

Cuéntanos qué está pasando:
Describe tu problema en detalle aquí.

El elemento div con clase raspberry debe tener un background-color naranja.
Cuando el resultado correcto lo valida colocando el color frambuesa #FF007F

  **Tu código hasta el momento**

<style>
body {
  background-color: #FFFFFF;
}

.orange {
  background-color: #FF7F00;
}

.cyan {
  background-color: #00FFFF;
}

.raspberry {
  background-color: #FF007F;
}

div {
  height: 100px;
  width: 100px;
  margin-bottom: 5px;
}
</style>

<div class="orange"></div>
<div class="cyan"></div>
<div class="raspberry"></div>
  **Información de tu navegador:**

El agente de usuario es: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36

Desafío: Aprende sobre colores terciarios

Enlaza al desafío:

Your code passes for me.

Do you have dark mode on? That can screw up tests involving colors.

If not, then reboot, try a different browser, reset the browser cache … If none of that works, then just back out of this challenge and move onto the next.

Hi,
I want to say that the exercise is not well written in Spanish.
it says orange when it should say raspberry.

Yeah, I noticed that too. That was odd. I’ll make a note to look at that more closely and create an issue on github if it hasn’t been done already.

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