Design comparison
SolutionDesign
Community feedback
- @IruburuPosted about 2 months ago
Esta muito bom, mas tenho uma recomendação:
- Ao invés de chamar a tag <main> para estilização, recomendo usar uma classe .card.
<-- HTML --> <main class="card"> <-- Seu contéudo --> </main>
/* CSS */ .card { /* Sua estilização */ }
- Na parte da estilização do corpo <body>, ao invés de usar "height: 100vh;", recomendo usar "min-height: 100vh;".
/* CSS */ body { min-height: 100vh; }
Recomendo separar o html do body no css.
Espero ter ajudado ^w^
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