What does this mean?
An <img>
element inside a link must not specify alternative text that duplicates the
content of a text link inside or beside it.
For example, this code should be avoided:
<a href="/apple">
<img src="apple.png" alt="Apple">
Apple
</a>
Accessible technologies will tend to see this as "Apple Apple". The correct behaviour is to
specify either a null (empty) alt
attribute:
<a href="/apple">
<img src="apple.png" alt="">
Apple
</a>
or to hide the image via aria-hidden
:
<a href="/apple">
<img src="apple.png" aria-hidden="true">
Apple
</a>
Learn more
Read about Technique H2 on how to combine an adjacent image and texts links.
See the WAI Tutorial on decorative images.
100% done
How close this website is to fixing this issue.
You can't view any more detail about this particular issue right now.
This is probably because we're still working on this. Take a look at another issue.
This is probably because we're still working on this. Take a look at another issue.