
Design comparison
SolutionDesign
Community feedback
- @alaa-mekibesPosted 2 months ago
Hi @TathianiLima, well done! Just a few points to consider:
-
Minimize the profile picture size and add a margin to the right for better clarity.
-
Add more padding to your box for improved spacing.
-
Use CSS variables to make your code more maintainable, like this:
:root { --bg-color: hsl(210, 46%, 95%); /* Add your other colors here */ } body { background-color: var(--bg-color); /* Other properties */ }
- Use rem units for consistent scalability. This article explains why:
Rem in CSS: Understanding and Using rem Units
Keep up the great work, your efforts are truly commendable!
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