
Design comparison
Solution retrospective
I will need to create more projects to still better in my CSS abilities
What challenges did you encounter, and how did you overcome them?How to make the content inside of the box responsive with small screens and i just put relative sizes to fixed that.
What specific areas of your project would you like help with?Responsiveness
Community feedback
- @rc-0105Posted 3 months ago
Hi Mathias congrats on completing the challenge. There is some things to imrpove in your code.
1)Remember to write semantical html, use main instead div,etc. If you want more information about Click this
2)I saw that you used a grid on the body and then you created a container with flex to center the content, instead of creating that div you could aply the styles directly on the body this way:
.body{ display: flex; justify-content: center; align-items: center; height: 100vh; }
This would center your content(In this case your box div) vertically and horizontally.
3)If you want to improve all the things related to responsiveness Click this It help a lot when i began.
Hope it was helpfull and have a great day.
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