Sachsentext

When an image is in a link, its "alt" attribute should not repeat other text in the link

Images within a link should not have an alt attribute that simply repeats the text found in the link. This will cause screen readers to simply repeat the text twice.

Example

Wrong

<a href="home.html"><img src="home.png" alt="Return home">Return home</a>

Right

<a href="home.html"><img src="home.png" alt="">Return home</a>