Design comparison
SolutionDesign
Solution retrospective
I completed this challenge using flexbox, any feedback is appreciated!
Community feedback
- @correlucasPosted about 2 years ago
πΎHello again Nikita, congratulations for your new solution!
Your solution is almost complete, all you miss now is the alignment and the border-radius. To get the alignment use
min-height: 100vh
anddisplay: flex
to get the alignment.To have the border-radius you've to the first and the third card a
border-radius: 14px
note that there are differences between the border radius position between these cards.body { min-height: 100vh; background-color: hsl(0, 0%, 95%); font-size: 1.5rem; font-family: "Lexend Deca", sans-serif; display: flex; flex-direction: column; align-content: center; justify-content: center; align-items: center; }
π I hope this helps you and happy coding!
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