Typography to build a nutrition label webpage

Estoy en el peldano 48 y realmente no entiendo que es lo que hay que quitar.

The :not pseudo-selector can be used to select all elements that do not match the given CSS rule.

div:not(#example) {
  color: red;
}

The above selects all div elements without an id of example .

Modify your .daily-value p selector to exclude the .no-divider elements.

Any help out there.
:cold_face:

Te pide que cambies .daily-value p selector para excluir el .no-divider

.daily-value p:not(.no-divider){
  border-bottom: 1px solid #888989;
}

Espero que esto ayude a mi amigo

Gracias, así lo hago.

1 Like