Design comparison
Solution retrospective
💻 This project was made with pure HTML and CSS
I'm not sure about the css code in this component, but I think it looks good, if anyone has any comments, I would be very grateful to receive them.
Community feedback
- @HassiaiPosted over 1 year ago
To center .container on the page using grid, add min-height:100vh; display: grid place-items: center or place-content: center to the body
body{ min-height: 100vh; display: grid; place-items: center; } body{ min-height: 100vh; display: grid; place-content: center; }
For centering using grid Click here
Use relative units like rem or em as unit for the padding, margin, width values and preferably rem for the font-size values, instead of using px which is an absolute unit. For more on CSS units Click here and here
Hope am helpful.
Well done for completing this challenge. HAPPY CODING
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