Design comparison
SolutionDesign
Solution retrospective
Just some tips on positioning and sizing nested elements for responsive design. 😊
Community feedback
- @iduaine12Posted about 3 years ago
Hi @Chiggs-I-Am great work on this design, just a few suggestions:
- The car icons should have
aria-hidden="true"
, because they are for decoration. Decorative image must be hidden at all times by usingaria-hidden="true"
attribute on the img tag. Learn more
should be ana
tag, since it will likely to be a link rather than button in an actual website.- I recommend adding
transition: all 0.2s;
to the button and the links, this will make:hover
smoother. - With your card component it might be worth looking at
display:flex;
over grid as it is easier to make it into a column withflex-direction:column;
when you shrink the screen.
Hope the above helps, great design :)
Marked as helpful0 - The car icons should have
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