Design comparison
Solution retrospective
What I found difficult is the deployment and the documentation process I think I've done a lot of commit spam just modifying the README.md file.
Community feedback
- @vanzasetiaPosted over 2 years ago
Hi, Kirin! π
Congratulations on completing your first Frontend Mentor challenge! π Good job on this challenge! π
I would like to recommend is that you could essentially finish this challenge without any media query at all by specifying a
max-width
on the.container
element. Also, I would recommend setting amin-height
on thebody
element instead of aheight
. Currently on mobile landscape view (360px * 640px) the card gets cut off.That's it! I hope this helps! Keep up the good work! π
Marked as helpful2 - @denieldenPosted over 2 years ago
Hi Kirin, good job! I took some time to look at your code and have some ideas for improving it:
- add
main
tag and wrap the card for improve the Accessibility - remove all
margin
from.container
class because with flex they are superfluous - instead of using
px
try to use relative units of measurement -> read here - as @vanzasetia already said it sets
min-height
to body instead ofheight
Overall you did well π
Hope this help and happy coding!
Marked as helpful1@jhsanchezmPosted over 2 years ago@denielden Thanks for your advise, I will try to use em instead of px ;)
1 - add
- @SarahWatkeysPosted over 2 years ago
Hi Kirin One suggestion that I was given that helped improve the accessibility report was to use things like <main> and <footer> tags, instead of <div> tags. My original had the same accessibility issues as you, but this took care of it.
Marked as helpful1@jhsanchezmPosted over 2 years ago@SarahWatkeys Thanks Sarah, I had the same question about accessibility ;)
0 - @jhsanchezmPosted over 2 years ago
Thanks for you advice sir. I will follow you recommendations :)
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