Semantic HTML5 markup, CSS, Flexbox Mobile-first

Please log in to post a comment
Log in with GitHubCommunity feedback
- @AndersonPaulo
Congratulations, your code is easy to understand, it was perfect, I'm following your way of developing responsive websites. I have a long way to go.
Marked as helpful - P@kaamiik
- Decorative images and avatar images do not need alt and the alt should be empty like
alt=""
. You can read more about how to add a good alt text here: https://www.craigabbott.co.uk/blog/how-to-write-good-alt-text-for-screen-readers/
- Your
a
should wrap insideh1
. You did the opposite.
- Your
font-size
andmax-width
should be inrem
unit notpx
. You can read this article about it and why you should not usepx
as a font-size.
- Use
min-height: 100vh;
instead ofheight:100vh;
.height: 100vh
strictly limits the height to the viewport size, potentially causing overflow issues if the content is larger than the viewport. On the other hand,min-height: 100vh
allows your element to grow in height if the content exceeds the viewport size.
- You do not need media query for max width. And you just need one max-width in container. and no need for other max-widths in your code.
- This
min-width: 73px;
is wrong. let the browser decide about with. You should not limit it.
- Decorative images and avatar images do not need alt and the alt should be empty like
- @ChNokia
Thanks for comment
Join 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