Design comparison
SolutionDesign
Solution retrospective
Probably need some clean-up, but main functionality is here, so Sass and BEM was fun, but I do think that React + Styled Components would be much pleasant tools to work with
Community feedback
- @tedikoPosted over 3 years ago
Hello, Michael Kret! 👋
Congrats on finishing another challenge! Your solution responds well and looks good. What I'd suggest you is:
- Change the
alt
attributes for the.header__logo
and.footer__logo
, as they don't add any extra context for screen reader users. Since your images are decorative youralt
text should be provided empty (alt="") so that they can be ignored by assistive technologies. - I can't access your dropdowns using my keyboard because you trigger them on
:hover
. - Add
:focus
pseudo class to interactive elements like anchors, buttons etc. Useoutline
property to make your website more accessible to keyboard users. Focusable elements like anchor, buttons or inputs they have applied default:focus
pseudo class withoutline
property. These default styles are subtle and hardly visible tho. Furthermore every browser has a slightly different default style for the outline, so you probably want to change the default style. Read more about why we should change focus styles.
Good luck with that, have fun coding! 💪
1@atekronPosted over 3 years ago@tediko thanks, it's a great feedback, I'll fix all of that shortly
0 - Change the
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