Design comparison
SolutionDesign
Solution retrospective
I hope your feedback to improve, thank you!
Community feedback
- @pikapikamartPosted about 3 years ago
Hey, awesome work on this one. Layout in desktop looks really good, the layout responds well as well and the mobile layout is good.
Some suggestions would be:
- Avoid using
height: 100vh
on a large container like themain
element or abody
or just a large container. This makes the element's height limited to the remaining viewport/screen's height. Instead, you can just remove it or replace it withmin-height: 100vh
, this takes full viewport and will expand if it needs to. - The text after the
h1
could have just usep
tag and not a heading tag. - Lastly, adjust the breakpoint for mobile layout, showing the mobile layout at only 360px is very little. Also it would be great that you practice a lot using mobile first layout. This will really help you to manage breakpoints.
Just those above, really great job on this again.
1 - Avoid using
- @gianbackPosted about 3 years ago
Thank you for your comment, I will really put it into practice, thank you very much again
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