Design comparison
Solution retrospective
I'm most proud that I understood most of what I was supposed to do. Next time I'd be better and faster. I learned a lot.
What challenges did you encounter, and how did you overcome them?I struggled with the avatar image and the name. Getting those to align properly took me a while for some reason. I eventually settled with what I think looks good.
What specific areas of your project would you like help with?I think I'm pretty good on this one. Maybe some help on why my name isn't inline with the avatar.
Community feedback
- @danielmrz-devPosted 6 months ago
Hello there!
Congrats on completing the challenge! โ
Your project is looking fantastic!
I'd like to suggest a way to make it even better:
- Using
margin
isn't always the most effective method for centering an element.
Here's a highly efficient approach to position an element at the center of the page both vertically and horizontally:
๐ Apply this CSS to the body (avoid using
position
ormargins
in order to work correctly):body { min-height: 100vh; display: flex; justify-content: center; align-items: center; }
I hope you find this helpful!
Keep up the excellent work!
Marked as helpful0 - Using
- @kodan96Posted 6 months ago
hi there! ๐
If you apply these properties to the
body
your content should be centered:body { min-height: 100vh; display: flex; justify-content: center; align-items: center; }
Other than that it looks really good, congrats!๐
Hope this helped, happy coding!
Marked as helpful0
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