79231238

Date: 2024-11-27 17:09:11
Score: 0.5
Natty:
Report link

What you are explaining is the actual Screen Reader behavior. When an image has an alt value, the screen reader will read it. If you want the image to not be accesible by the screen reader here are your options:

  1. Remove the value in the alt text.

<img src="..." alt="">

  1. Add the property role with the value presentation.

<img src="..." role="presentation">

Notes to consider:

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What you are
  • Low reputation (1):
Posted by: Osler Villegas