Design comparison
SolutionDesign
Community feedback
- @correlucasPosted over 2 years ago
πΎHello Qori El-Hafizh , congratulations for your first solution and π welcome to the Frontend Mentor Coding Community!
You've done a good work wrapping all the content inside the main div, well done, I've one tip for you about the right column and how to mange the content:
Using
display: flex; flex-direction: column; justify-content: space-around;
you give a better spacing for the section with the content note that the current way you did theyre alignted top:See the code fixes below:
.card-body { display: flex; padding: 2rem; flex-direction: column; justify-content: space-around; }
π I hope this helps you and happy coding!
Marked as helpful1
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