Design comparison
SolutionDesign
Community feedback
- @NehalSahu8055Posted over 1 year ago
Hello Coder 👋.
Congratulations on successfully completing the challenge! 🎉
Few suggestions regarding design.
- Remove the
commented line
from the below code it is not a good way to center the card instead use flex or grid in body.
main { /* margin: auto; */ display: grid; grid-template-columns: repeat(5, auto); grid-template-rows: repeat(2, auto); /* padding: 150px; */ max-width: 1440px; }
- To center the card on the page.
- USING FLEXBOX
body{ min-height: 100vh; display: flex; align-items: center; justify-content: center; }
- USING GRID
body{ min-height: 100vh; display: grid; place-items: center; }
I hope you find this helpful.
Happy coding😄
Marked as helpful1 - Remove the
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