Design comparison
SolutionDesign
Solution retrospective
Had a great time doing this challenge, what troubled me was in centering it in the middle of the page. I used display grid with place items center, I would like to know if there is another alternative or this the only way to be able to center lets say a div or main element in a page? If y'all have any questions for me feel free to ask!
Community feedback
- @snowbot22Posted about 1 year ago
Hi, you can use Flexbox to center elements too:
parent-element{ display: flex; justify-content: center; align-items: center; }
Where justify-content is for align items vertically and align-items is for algin items horizontally.1
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