Design comparison
SolutionDesign
Solution retrospective
Any suggestion is welcome
Community feedback
- @afrusselPosted about 3 years ago
Good work, the background image is missing. I would like to request you please take a look at my solution it may help you to find your issues
2 - @pikapikamartPosted about 3 years ago
Hey, great work on this one. The layout in desktop seems different but is fine for now also the background-image only shows when the layout is being resized to its mobile layout.
Some suggestions would be:
- On your
body
tag, usingheight: 100vh
is not really good. Using this limits the element's height based on the remaining viewport's height. Replacing it withmin-height: 100vh
is much better, since this takes the whole height as well and it will expand if it needs to, unlikeheight: 100vh
which doesn't expand because it is already fixed. - The text after the
h1 element should not be using
ulelement.
ulelement for contents that is a list and that is not a list. Using
ptag alone to contain those text is much greater than using
ul`. - The text for the annual plan as well, you should not use
ul
element on those. Theannual plan
could be a heading tag and the text below it could be aspan
orp
tag. - Lastly, adding some
padding
to the top and bottom of thebody
tag would be really great , so that it prevents the content from touching the ceiling and flooring.
Aside from those, great job.
0 - On your
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