I'm testing the JAWS screen reader on a table having the following markup in its cells:
<center><i class="fa fa-check fa-1" title="MyTitle" aria-hidden="true" style="color:green" aria-label="read me"></i></center>
I've noticed that the screen reader can't "enter" the above cell (due to the aria-hidden
), so I removed it:
<center><i class="fa fa-check fa-1" title="MyTitle" style="color:green" aria-label="read me"></i></center>
Now it can enter the cell but doesn't read any text.
Any way to put some text accessible only to the screen reader and not visible on the UI?
<center>
element has been obsolete for many years. html.spec.whatwg.org/dev/obsolete.html#obsolete – Rob