I have a heading like this:
<h1>This is a t<span>e</span>st.</h1>
The tags around the letter "e" cause Mac OS X Voiceover to read the individual letters of the word separately, rather than the full word. So, it speaks:
"This is a t e st."
Instead of:
"This is a test."
Given that I need to enclose a letter of a word in a tag*, how can I make sure that the screen reader speaks the word as normal?
- N.B: any tag will do. I've tried
<b>
,<i>
and<em>
and they all generate the same effect.
abbr[title]
of any help here? @Pekka웃 Even if it's pretty annoying, I don't see this as a bug. A word is made of consecutive letters, not of consecutive elements. – Lysander