Design comparison
SolutionDesign
Solution retrospective
feedback is a great help
Community feedback
- @Zy8712Posted 12 months ago
Your solution looks great. Minor thing I noticed when skimming through your code is an possible minor typo:
The first div in your body has a class
alig-items-center
. It is missing then
inalign
.If you want to center your container, I'd suggest using flexbox to center it and adjusting your attribution to have
position: absolute
so it doesn't interfere with your main content.Centering container:
body{ display: flex; flex-direction: column; justify-content: center; align-items: center }
Adjusting attribution:
positon: absolute; bottom: 8px;
Hope this helps 👍
Marked as helpful1@MikhelRhyzPosted 12 months ago@Zy8712 Thank you for the feedback. I will take note of that.
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