
Design comparison
Solution retrospective
Proud of applying what i have learnt
What challenges did you encounter, and how did you overcome them?Encountered problem with Flexbox but overcame it after several trials and error
What specific areas of your project would you like help with?Flexbox
Community feedback
- P@Trischa-99Posted 27 days ago
Hi, Your solution looks great! Personally, I don’t see many areas that need improvement. However, you could consider using shorthand for padding and margin. While it’s not always necessary, it could enhance readability in some cases.
.card { padding-top: 16px; padding-right: 16px; padding-bottom: 40px; padding-left: 16px; } --> .card { padding: 16px 16px 40px 16px; }
1@garnetcodesPosted 26 days ago@Trischa-99 You are right. Thanks for pointing it out for me
0 - @ToskytdPosted 27 days ago
clear and readable...you could write some properties using the shorthand method(e.g padding: 10px 20px 30px 10px) to shorten the code...welldone
0
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