Design comparison
Solution retrospective
👋 Hi community!!
Here is my challenge. I tried to make this most responsive as possible, I think it worked well.
I would like to receve your feedbacks about how could i improve this challange.
🙏 Thanks in advance!!
Community feedback
- @correlucasPosted about 2 years ago
👾Fala Carolina, parabéns pela sua nova solução!
Dei uma olhada no seu site e no código, o design está simplesmente perfeito, você reproduziu todos elementos do desafio. Muito bom!
Em relação a responsividade, o card em si já é responsivo, então nem teria necessidade desses media queries, já que o cartão diminui de acordo com a tela naturalmente, você só teria que corrigir o
width
do main commax-width
. Lembre-se sempre que você quiser que algum elemento seja flexivel, ele tem que ser sempremax-width
oumin-width
porque se você usarwidth
ele fica um elemento invariável que não estica e nem diminui.Fiz umas mudanças no seu código e deixei aqui embaixo, a primeiro é sobre responsividade e a segunda é um media query pra jogar os elementos da parte do
preço
em linhas diferentes quando o cartão começa a ficar muito estreito.main { margin: 24px; max-width: 450px; border-radius: 20px; background-color: var(--n1); }
@media (max-width: 320px) { .content .price { display: flex; align-items: center; flex-direction: column; } }
Parabéns e continue nesse foco Caroline!
Marked as helpful1@CarolAmorimPosted about 2 years agoOi Lucas, tudo bem?
Obrigada pelo feedback, a dica sobre o
max-width
vai ser muito útil, vou aplicá-lo neste código e nos futuros também.0@correlucasPosted about 2 years ago@CarolAmorim Se você quiser um artigo mais aprofundado sobre assunto, vou te compartilhar um link, li esses dias porque eu estava curioso sobre as diferenças:
https://blog.prototypr.io/what-even-is-the-difference-between-width-and-max-width-8f37b282c7f1#:~:text=This%20is%20a%20simple%20way,the%20browser%20use%20max%2Dwidth.
Marked as helpful1@CarolAmorimPosted about 2 years ago@correlucas Vlw pelo artigo!! consegui entender.
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