Design comparison
Solution retrospective
I was really proud of how I remembered to use align-text: center; because i was having a hard time with it. Its nothing big but i got proud of it
What challenges did you encounter, and how did you overcome them?Centering, and i didnt really overcome it
What specific areas of your project would you like help with?When i was trying to center it in the middle i got really confused as to how i was supposed to do it because i thought that if i used justify-content: center; and align-items: center; it would go to the center of the page but only the justify-content: center; worked and i ended up putting a margin in the top so it could go to the middle. Can anyone tell me what am i doing wrong?
Community feedback
- @danielmrz-devPosted 7 months ago
Hello, @Leticiafbm!
Your project is looking fantastic!
I already commented this on one of your solutions, but just in case you haven't seen it, here it is again:
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!
0 - Using
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