Design comparison
Solution retrospective
This challenge was simple but good to practice a bit of CSS and HTML.
Community feedback
- @correlucasPosted about 2 years ago
👾Fala Edson, tudo bem? Parabéns pelo seu primeiro desafio e seja bem vinda a comunidade do Frontend Mentor!
O seu card do QR CODE ficou muito bom, pra melhorar ainda mais, ficou faltando deixar o container e a imagem responsiva. Pra fazer isso você precisa substituir os
width
commax-width
. A diferença entre os dois é quewidth
tem uma largura fixa e impede do container crescer ou diminuir já omax-width
permite que o container tenha uma largura máxima mas possa diminuir pra ajustar com a tela.Pra fazer com que a imagem pegue a lagura total do container menos o padding, vc precisa colocar
display: block
emax-width: 100%
desse jeito ela cresce o tamanho do container e ajusta de acordo com o tamanho dele.img { display: block; max-width: 100%; }
👋 Espero ter ajudado e continue no foco!
Marked as helpful2@schifferedsonPosted about 2 years ago@correlucas Obrigado Lucas, foi de grande ajuda.
0@correlucasPosted about 2 years ago@schifferedson Fico feliz em ter ajudado Edson, continue no foco
0 - @natashaplPosted about 2 years ago
Hi Edson. Nice work and welcome to Frontend Mentor! I just submitted QR code a couple of days ago, so I'm also new. One thing I learned while working on that challenge is about the importance of the
main
tag. I rarely used it in the past, but I read that it helps screen readers and is also semantic. Consider using themain
tag to wrap your content rather than the div.Here's an informative article that talks about it and all the other HTML5 semantic tags:
Marked as helpful1
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