Design comparison
SolutionDesign
Solution retrospective
It's the first time I primarily used em and rem units in my CSS. Feedback would be appreciated a lot!
Community feedback
- @lucasdaherPosted 9 months ago
Great job Lahan!
I have suggestions for you:
1) Change the
h3
toh1
.- The
h1
toh6
tags are used to define HTML headings. h1
is used to most important heading. In this case,h1
is used to user name.
2) You can use Flexbox to separate all contents of your container using
gap
, like:.card { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 24px; }
With Flexbox you have the possibility to organize and space your content more easily within the card.
Hope i helped!
Keep creating amazing projects!
1 - 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