Design comparison
Solution retrospective
That I was able to complete the desktop design of the challenge easily.
What challenges did you encounter, and how did you overcome them?Aligning the image and the other contents side by side. I overcame this by learning about displays.
What specific areas of your project would you like help with?Creating the mobile design for this challenge.
Community feedback
- @Grimm-NPosted 13 days ago
Awesome job on this work—really great effort! 🌟 Keep up the fantastic work!
A few tips to level up:
-
Try using relative units (
rem
,em
,%
,vh
,vw
) instead of pixels. They’re more flexible and adapt better to different screen sizes. -
Focus on accuracy in layout sizes and positioning—it’s how we grow and improve! Precision helps you refine your skills and get closer to the original design.
-
Start with the mobile layout first and then add media queries for larger screens. This “mobile-first” approach is recommended because it keeps your code cleaner and often performs better.
/* Base mobile styles here */ .card { width: 100%; padding: 1rem; } /* Media query for larger screens */ @media (min-width: 768px) { .card { width: 50%; padding: 2rem; } }
This way, you build up from a solid base that works on small screens, then adjust for larger ones. It’s simpler, and your design scales up smoothly!
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