Design comparison
Community feedback
- @correlucasPosted over 2 years ago
👾Fala , tudo bem? Parabéns pelo desafio!
Acabei de ver a sua solução e está muito bem feita, a única coisa que tem pra melhorar é o tamanho da imagem e a posição. Eu mudei o posicionamento da imagem do lado esquerdo porque com o posicionamento que voce colocou estava cropando e também adicionei
backgroud-size: cover
pra pegar o background por inteiro.Além disso, ao invés de usar
vh
você poder usarpx
porquevh
está relacionado ao tamanho de tela e pixel é relativo a posição do background em si.Aqui as correções:
body { height: 100vh; background-image: url(../images/bg-pattern-top-desktop.svg), url(../images/bg-pattern-bottom-desktop.svg); background-repeat: no-repeat; background-size: contain; background-position: left -67vh top 0, right -67vh bottom 0; }
👋 Espero ter ajudado e continue no foco!
Marked as helpful0 - @VCaramesPosted over 2 years ago
Congrats on completing this challenge!
Everything looks good!
The only thing I would change is your use of pixels; You want to use rem and em.
By using px, your website isn't fully accessible to the users.
attached is a link explaining everything in further detail:
Marked as helpful0
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