Latest solutions
Accessible Intro Component with Signup Form using Grid, JS and ARIA
#accessibility#bemSubmitted about 3 years ago
Latest comments
- @CamilleBreillotSubmitted about 3 years ago@marisudrisPosted about 3 years ago
Great solution! I concur with @darryncodes that you should try to use semantic elements as much as possible, i.e. changing attribution's tag to
<footer>
or enclosing it in one. As for the images - if they're purely decorative (as in this case) - leave the alt tag empty (alt=""
) - this has the same effect as tacking onaria-hidden="true"
- assistive devices & screen-readers won't pick it up, and from what I've read - this is considered the canonical approach for "hiding" purely decorative images from assistive devices. Here's one resource on this topic: https://www.w3.org/WAI/tutorials/images/Marked as helpful1