Design comparison
Solution retrospective
Welcome !
Thank you for looking at my work.
I am a beginner so please tell me if you see anything I can improve on.
Nabil-Y
Community feedback
- @jason12119Posted about 3 years ago
I see two things you could improve on. First is the headline, which has much smaller font size than the preview. If you struggle with choosing proper font sizes, study how to use EM units, as they help quite a lot.
Another thing I see is that the padding on the left half of the card is kinda off (bottom is very big compared to the rest). If you want to have the last element (which here are the statistics) at the bottom, you can use absolute positioning (I don't recommend) or flex positioning (I highly recommend).
Keep coding and enjoy :)
Marked as helpful1@Nabil-YPosted about 3 years agoHi @jason12119,
Thank you for your feedback, I'll look into it and update the solution.
0 - @pikapikamartPosted about 3 years ago
Hey, awesome work on this one. Layout in desktop looks great though it is pushed down and the height of the container seems larger than the design. It is responsive though and the mobile layout looks great.
jason12119 already gave great feedback on this one, just going to add some suggestions as well:
- Since you are using flexbox, you can remove the
margin
on themain
since using it as positioning the layout is not consistent enough, but remember to add amax-width
on themain
to have its size define. Then on thebody
tag just addjustify-content: center
to center the layout vertically. - Your
.stats
could have usedul
since those are "list" of information about the company website and usingaside
on it is not suited. - Also, inside in those list information, those text should not be using a heading tag because they don't really give content on what the section would contain right, so better using
p
tag on them.
Aside from those, the site looks great.
1 - Since you are using flexbox, you can remove the
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