Design comparison
SolutionDesign
Solution retrospective
I wait comments!!
Community feedback
- @kens-visualsPosted about 3 years ago
Hey @dusvimarin 👋🏻
Since you are waiting for comments, I think I have one 😅
- I suggest, instead of giving
margin-top
to the.container
, givemin-height: 100vh;
tobody
and it will center the card automatically.
I hope this was helpful 👨🏻💻 great progress on the project, loved it, keep it up. Cheers 👾
Marked as helpful0 - I suggest, instead of giving
- @pikapikamartPosted about 3 years ago
Hey, great work on this one. Layout in general looks great.
kens_visuals already gave great tip on this one, just going to add some suggestions as well:
- It would be great to have a base styling with these properties
html { box-sizing: border-box; font-size: 100%; } *, *::before, *::after { box-sizing: inherit; }
This way, handling an element's size will be lot easier because of the
box-sizing: border-box
. You can search up some more of how this works.- Those small-circles-images on the card, if you set a
aria-hidden="true"
to animg
remember to use empty value foralt
likealt="'
, since you are hiding the element, you should remove all description to theimg
itself. - Person's
img
should be using the person's name as thealt
likealt="VIctor Crest"
, lose the wordprofile
. - Your
.footer
could have usedul
since those are "list" of information about the person's profile.
Aside from those, site looks great.
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