No entiendo que pasa. Haga lo que haga no me deja

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

  **Tu código hasta el momento**

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

.green {
  background-color: hsl(120, 100 %, 50 %);
;
}

.cyan {
  background-color: hsl(180, 100 %, 50 %);
;
}

.blue {
  background-color: hsl(240, 100 %, 50 %);
;
}

div {
  display: inline-block;
  height: 100px;
  width: 100px;
}
</style>

<div class="green"></div>
<div class="cyan"></div>
<div class="blue"></div>
  **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/101.0.4951.67 Safari/537.36

Desafío: Ajusta el matiz de un color

Enlaza al desafío:

NO ENTIENDO!! osea, hago todo bien y no me figura.

You are almost there. Notice that you have an extra semicolon (;) on the 3rd line. Also, you have an extra space before the percent (%) sign. If I remove those, your code passes for me. Yes, I know that the explanation text has a space there - I don’t know why. I don’t know if CSS cares, but it seems to.

Ohh, yes! Thak you so muchh

1 Like