
Design comparison
Solution retrospective
Completing and submitting more projects, didn't know i could even build pages before. Hope to continue well
What challenges did you encounter, and how did you overcome them?Not much this time, just trying to get better with pixel perfect representations
What specific areas of your project would you like help with?Any area with an error or i could improve. Please correct me🙏
Community feedback
- @MarziaJaliliPosted 3 months ago
Well done buddy,
Adjusments you could apply:
- set the lines below in the
body
selector to centerize the card:
body { display: grid; place-items: center; min-height: 100vh; }
- Also, in order for the code above to work wrapp everything within the
<body>
element inside the<main>
element to make sure<body>
only has one child element.
It will look something like this:
<body> <main> <!-- every element nested inside --> </main> </body>
Other than this your solution is spot on, man😎
Marked as helpful0 - set the lines below in the
- @Vinnykells15Posted 3 months ago
Alright thank you so much, really appreciate the feedback. I'll make the corrections🙏✅
0
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