Design comparison
Solution retrospective
I have re-worked this one considering report findings and community feedback. So, how is it now? I appreciate your comments.
Community feedback
- @correlucasPosted about 2 years ago
👾Hi Givi J., congratulations on your first solution!👋 Welcome to the Frontend Mentor Coding Community!
Great solution and a great start! From what I saw you’re on the right track. I’ve few suggestions for you that you can consider adding to your code:
1.I saw that for some properties you’ve used
rem
and for otherspx
. In this case, it is better to use only one kind of unit to have a better organization for your code.relative units
asrem
orem
have a better fit if you want your site more accessible between different screen sizes and devices.REM
andEM
does not just apply to font size, but to all sizes as well.2.To reduce the CSS you can use the direct selector for each element instead of using
class
this way you have a code even cleaner, for example, you can select everything using the direct selector for (img, h1, and p, main).3.Use a CSS reset to avoid all the problems you can have with the default CSS setup, removing all margins, and making the images easier to work, see the article below where you can copy and paste this CSS code cheatsheet: https://piccalil.li/blog/a-modern-css-reset/
✌️ I hope this helps you and happy coding!
Marked as helpful0@WhiteFatalPosted about 2 years ago@correlucas Thanks for the CSS cheatsheet :), it was interesting read.
0 - @hyrongennikePosted about 2 years ago
Hi @WhiteFatal,
Nice job on the challenge
Just a tip, instead of using margin to center the div you can use flexbox. Replace your body rule with the one below.
body { background-color: hsl(212, 46%, 89%); display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 100vh; }
I like that you kept the HTML structure very simple and didn't complicate it by adding extra divs.
Hope this is helpful
Marked as helpful0
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