Design comparison
SolutionDesign
Community feedback
- @RioCantrePosted almost 3 years ago
Hello there! Good job in this challenge. Viewing the solution, I think you should consider the following as well…
- Adjust the padding in
.card
rule set frompadding: 1.5rem 1.6rem 2rem;
intopadding: 1rem 0;
- Use semantic tags, for HTML structures, refer it with this one Semantics . Alternative is to wrap this line
<div class="card">
withsection
tag. Since it has a hover state, might as well usea
tag for the link - Wrap this line
<div class="attribution">
withfooter
tag or place it inside themain
tag - Aside from using
hr
for the border line. Alternative way is to useborder-top: 1px solid 'color value';
in theclass="creator"
Above all, Well done! Keep it going!
Marked as helpful0@borkk85Posted almost 3 years ago@RioCantre Thanks for the feedback, it's been very helpful while I'm trying to get my head wrapped around writing well structured code...
0 - Adjust the padding in
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