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.
98.4% done
How close this website is to fixing this issue.
This issue is quite technical.
To understand what is going on, you may need some familiarity with
HTML,
the language used to create web pages. Ask a web developer if you need help.
HTML | Found on page | Issues |
---|---|---|
<a class="listing__link" href="https://www.broadland.gov.uk/councillors/60/caroline_karimi-ghovanlou">...</a>
|
1 | |
<a class="listing__link" href="https://www.broadland.gov.uk/councillors/22/kenneth_leggett_mbe">...</a>
|
1 | |
<a class="listing__link" href="https://www.broadland.gov.uk/councillors/65/julie_neesam">...</a>
|
1 | |
<a class="listing__link" href="https://www.broadland.gov.uk/councillors/63/karen_lawrence">...</a>
|
1 | |
<a class="listing__link" href="https://www.broadland.gov.uk/councillors/71/samuel_walker">...</a>
|
1 | |
<a class="listing__link" href="https://www.broadland.gov.uk/councillors/41/karen_vincent">...</a>
|
1 | |
<a class="listing__link" href="https://www.broadland.gov.uk/councillors/44/john_ward">...</a>
|
1 | |
<a class="listing__link" href="https://www.broadland.gov.uk/councillors/9/john_fisher">...</a>
|
1 | |
<a class="listing__link" href="https://www.broadland.gov.uk/councillors/23/judy_leggett">...</a>
|
1 | |
<a class="listing__link" href="https://www.broadland.gov.uk/councillors/30/grant_nurden">...</a>
|
1 |
48
distinct issues were
found in the sample of 125 web pages.
Only the first 10 issues are shown here.