Design comparison
Solution retrospective
✨ Here's my solution to this challenge ✨
I had to review lessons on flexbox and grouping because I couldn't place the items correctly inside the box.
I learned a lot during this challenge I also managed to use the Hover and Link functions and that brought a smile to my face. In addition, I welcome suggestions on how to improve the flow of the service and what I could have done better.
Community feedback
- @danielmrz-devPosted 10 months ago
Hello @JeanJackcss!
Your project looks great!
I noticed that you used
margin: 200px
to place the card in the middle of the page. Here's a very efficient way (and better) to center the card:- Apply this to the body (in order to work properly, don't use position or margins):
body { min-height: 100vh; display: flex; justify-content: center; align-items: center; }
I hope it helps!
Other than that, great job!
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