Design comparison
SolutionDesign
Solution retrospective
any feedback is welcome :)
Community feedback
- @kens-visualsPosted about 3 years ago
Hey @Brobit 👋🏻
I have some suggestions to help you fix the accessibility, HTML and some other issues.
- First, in your HTML,
<div class="giga-content">...</div>
should be<main class="giga-content">...</main>
and<div class="attribution">...</div>
should be<footer class="attribution">...</footer>
. These will fix the accessibility issues. Don't forget to generate a new repot once you fix the issues. - Next, for the car icons, they should have
aria-hidden="true”
, because the icons are for decoration. You can read more aboutaria-hidden
here. - Avoid using
!important
as much as you can, you should give classes to things that you want to change and work on them in your CSS file. Also, avoid inline styling, like thisstyle='align-items: flex-end;'
. Check out this link to learn more about CSS specificity.
I hope this was helpful 👨🏻💻 overall, you did a great job, responsiveness nicely done. Cheers 👾
Marked as helpful1 - First, in your HTML,
- @epalpamPosted about 3 years ago
@Brobit
good job done!! congrats
Some comments from my side:
-
try to use semantic html, eg. instead of div use tags like section, main, header etc ect
-
your css code is not so easy to follow, try to make it more readable !
Marked as helpful1 -
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