"Fundamental CSS comprehension" - assessment

Hola, solicito evaluación para el ejercicio Fundamental CSS comprehension.
Dejo enlace para su valoración:

Gracias!

Hola @Juan_Carlos_Alvarez_Fernandez

Great work! :tada:

When using box-sizing I would rather apply it to everything than just two elements:

*, *:before, *:after {
  box-sizing: border-box;
}

Regarding this exercise you could also just leave out box-sizing and use height: 3em; on the header/footer selector.

It’s recommended to use unitless numbers for line-height . For an explanation see: https://developer.mozilla.org/en-US/docs/Web/CSS/line-height#prefer_unitless_numbers_for_line-height_values

I hope that helps,
Michael

Muchas gracias por tus comentarios, Michael!

1 Like