Design comparison
Solution retrospective
Next time I would try to do the solution mainly grid or without using flex or grid entirely.
What specific areas of your project would you like help with?The main areas of feedback would be appreciated for how I implemented my CSS styles.
Community feedback
- @Alex-Archer-IPosted 5 months ago
Hi!
Congrats with your first challenge, that one looks cool =)
Here a few tips.
It's a bit more convenient and more predictable to use
vh
for theheight
property of thebody
.vh
stands for 'view height' and depends on screen's height, so,100vh
is full screen height.Also it's better to use
min-height
forbody
in case if content will be longer that the screen. That could be said aboutheight
of the container - better not to specify it. In real projects content may change time to time, so let the content define it's container height.Oh, and flex have a
gap
property too =)Hope that could help, keep doing =)
1
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