Design comparison
Solution retrospective
This is my first attempt at any kind of off-tutorial project, and I'm pretty happy with the outcome.
Honestly the hardest part was getting it deployed to my page. As far as the layout and design goes it looks right on my browser but I bet there are a dozen little things I could do to make it cleaner/better/more responsive, so any feedback is greatly appreciated.
Community feedback
- @CyrusKabirPosted over 2 years ago
Hi Matt, you did a good job on this challenge as a first real code without any tutorial. but there are some issues about your end result and code structure :
- you used percentage value on
border-radius
property - using
width
instead ofmax-width
on img - some some styles issues like color, padding, ... and now I gonna explain each issue in depth.
1. what value it's good for border radius: at first step you should understand about differences between units in border radius I recommend read this stackoverflow post but in this simple challenge em and px are both fine units but in percentage value for having more closer result you need some calculations !
2. more responsive images: using max-width property on images it's better because images won't take more width than maximum value in max-width property and using them with 100% value can make them more responsive. you can read more about responsive images on this article
3. some little styling issue: your card heading doesn't have proper color like main design and having more space like padding between image and card inner would be great. you can use some comparison tools for matching your end result to main ui design like Perfect Pixel extension you can download it on their main site.
I hope my little tips could help you
Marked as helpful1@MattLearnstoCodePosted over 2 years ago@CyrusKabir Thank you so much - this is really helpful, and I'll have a look at each of your links.
GREATLY APPRECIATED!
1 - you used percentage value on
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