Design comparison
SolutionDesign
Solution retrospective
This is my solution for this challenge. It was a good thing to work with multiple background images using CSS. Thank you for stopping by.
Community feedback
- @pikapikamartPosted about 3 years ago
Hey, awesome work on this one. Layout in general looks great.
Some suggestions would be:
- Avoid using
height: 100vh
orheight: 100%
on a large container like thebody
as this makes the element's height capped based on the viewport/screen's height. Instead usemin-height: 100vh
so that the element will expand if it needs to. - Person's image should be using the person's name as the
alt
value likealt="Victor Crest"
. Components like this where a person's information is presented, make sure to use their name as the person'simg
alt
value. - When using
img
tag, you don't need to add words that relates to "graphic" such as "profile, image" and others, sinceimg
is already an image so no need to describe it as one. - You could have used
ul
for the.card__footer
selector since those are list of items that are inside it. - Also, those text inside the
.card__footer
are not suitable to be heading tag, because by making it one,80k
does not give any information about the section right, so it will be better to just usep
tag.
Aside from those, great job again on this one.
Marked as helpful1 - Avoid using
- @KhalidKhabouzPosted about 3 years ago
Thank you so much for all these remarks, it was very helpful for me to build and develop a good practice. Thanks again for your time for stopping by.
1
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