0

I need to add check marks (✓) to cells in a HTML table.

Can anyone tell me if using hex code is accessible, i.e. can it be recognised by screen readers? Or is there a more accessible way to approach this or is it impossible to create a web accessible check mark?

unor
  • 92,415
  • 26
  • 211
  • 360
Jandal
  • 1
  • 3

1 Answers1

1

The hex code will not probably be consistent between screen readers.

To be sure, you can set the check mark as an image and use the alt attribute:

<img src="/check.png" alt="check">

This way, all the screen readers will read this as "check".