Design comparison
Community feedback
- @correlucasPosted about 2 years ago
👾Fala Paulo, tudo bem? Parabéns pelo desafio!
O seu componente já está com o design pronto, um bom exercício pra melhorar seu código, seria criar a estrutura mais limpa o possível e reduzir seu código ao máximo. Por exemplo, você pode segurar todo conteúdo em um bloco só usando (
<main>
ou<div>
) nesse caso vamos usar<main>
por que é uma tag semantica. Se você notar, nem precisa adicionar nenhum div além da principal pra segurar o conteúdo (img, h1 e p). A estrutura ideal e mais limpa possível pra esse desafio é essa aqui:<body> <main> <img src="./images/image-qr-code.png" alt="Qr Code Image" > <h1>Improve your front-end skills by building projects</h1> <p>Scan the QR code to visit Frontend Mentor and take your coding skills to the next level</p> </main> </body>
Pra reduzir o CSS, você pode excluir todas as classes e selecionar todos elementos no CSS com o seletor direto para cada um deles, nesse caso (img, div, main, h1 e p). Faltou também colocar o
alt
text pra imagem ser reconhecida por leitores de tela.Pra melhorar a performance em diferentes dispositivos e tipos de tela você pode usar
rem
eem
ao invés depx
.👋 Espero ter ajudado e continue no foco!
Marked as helpful1 - @AdrianoEscarabotePosted about 2 years ago
Hi @sqirum, how are you?
Congratulations on completing another project, I really liked the result of the layout, but I have some tips that I think you will like:
1- Document should have one main landmark, you could have put all the content inside a
main
tag. click here to read about it2- Prefer to use relative measures on smaller screens, you can make this change using a media query:
@media (max-width: 370px) { .card { width: 100%; } }
The rest is really good!
Hope it helps... 👍
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