Submitted 9 months ago
Frontend Mentor responsive QR Code using HTML and CSS
@iBerserker89
Design comparison
SolutionDesign
Solution retrospective
Any thoughts on optmizing the media query?
Community feedback
- @danielmrz-devPosted 9 months ago
Fala @iBerserker89!
Seu projeto ficou ótimo!
Notei que você utilizou
margin
pra centralizar o card. Usar margens não é a melhor opção pra centralizar elementos.📌 Existe uma forma melhor e mais eficiente de posicionar elementos no meio da página (tanto na horizontal quanto na vertical):
- Aplique isso ao body (Pra funcionar corretamente, não use position ou margins):
body { min-height: 100vh; display: flex; /* também funciona com grid */ justify-content: center; align-items: center; }
Espero que ajude!
Fora isso, você fez um excelente trabalho!
Marked as helpful1@iBerserker89Posted 9 months agoOpa @danielmrz-dev!
Muito obrigado pelo feedback! Já estudei flex, mas não sabia que era uma prática ruim usar margin e position para centralizar. Vou implementar no código. Obrigado!
1
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