Design comparison
Solution retrospective
Happy to receive any improvements to the code or the design.
Community feedback
- @correlucasPosted about 2 years ago
👾Hello Diaa, Congratulations on completing this challenge!
Here’s some tips to improve your solution code:
1.Save your time using a CSS RESET to remove all default settings that are annoying as the margins, paddings, decorations and optimize it making easier to work,see the article below where you can copy and paste this css code cheatsheet: https://piccalil.li/blog/a-modern-css-reset/
2.You’ve used
px
as the unit for sizes but the problem with pixels is that its not optimized for multiple devices and screens. So a good fit its to userem
orem
that have a better performance and make your site more accessible between different screen sizes and devices.REM
andEM
does not just apply to font size, but to all sizes as well.✌️ I hope this helps you and happy coding!
Marked as helpful1@diaaFarisPosted about 2 years ago@correlucas Thank you Lucas for your advice it was so helpful and I will apply these tips in my future projects.
1 - @romila2003Posted about 2 years ago
Hi Diaa,
Congratulations 🎉 for completing this challenge, the card looks great and is responsive. There are some issues I want to address:
- It is best practice to wrap the main content within the
main
tag which would ensure that your content is wrapped within the correct landmarks e.g.<main class="container"></main>
- I noticed that you took a desktop-first approach however I would recommend the mobile-first approach as it easier for responsiveness and to rearrange/change the elements within your card/body. Therefore, rather using the
max-width
property within the media query, you can use themin-width
property instead.
Overall, great attempt and wish you the best for your future projects so keep coding 👍.
Marked as helpful1@diaaFarisPosted about 2 years ago@romila2003 This is really helpful. Thank you for your advice.
1 - It is best practice to wrap the main content within the
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