Design comparison
SolutionDesign
Community feedback
- @MiguelPositivePosted almost 2 years ago
Hola Camilaic96, espero que estés muy bien. Tu solución estuvo muy buena, gran trabajo.
Te recomiendo que no utilices esto, porque no es una buena practica:
* { margin: 0; padding: 0; box-sizing: border-box; }
En su lugar podrías optar por usar:
* { box-sizing: border-box; } body { margin: 0; }
además, te recomiendo usar la propiedad calc para hacer el
tamaño
de letra responsiva:font-size: calc ( 1em + 1vw );
Por ultimo, recodarte que
puedes
utilizar la etiquetamain
para abarcar todo el contenido principal de tu etiquetabody
.Me gusto mucho tu trabajo, muchos éxitos.
Marked as helpful0@Camilaic96Posted over 1 year ago@MiguelPositive Gracias! Lo tendré en cuenta para los siguientes proyectos que realice.
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord