I have been using the Mac OSX's built in screen-reader for testing my site, I know it's not the best but it's all I have for now. But I'm finding it isn't pausing at the end of elements... which makes sense; but I'm finding myself placing hidden periods to make things readable:
<div class="breakdown">
<strong>35</strong> New<span class="visuallyhidden">.</span><br>
<strong>4</strong> Overdue<span class="visuallyhidden">.</span>
</div>
I feel really dirty doing this, but if I dont then either it ruins the design, or it is read in a continuous sentence which is not comprehensible.
Does anyone have an experience of this kind of thing to offer?
I suggest using
aria-label
when you need the screen reader to speak something different than what appears in the html markup.I would update your code to be:
With this, a screen reader will speak the following with full pauses at each period:
We are specifically targeting ChromeVox, but this should work for all screen readers.
Thoughts on
aria-label
It's been a while since this question was asked, but it's worth noting that there is nothing wrong with the technique proposed in the question. I can confirm that the current version of Jaws, Jaws 18.0, will pause for either commas or periods, unlike marks such as colons or bullets which are announced outright as such. Current versions of iOS VoiceOver pause nicely for commas as well. Your punctuation (if it is not part of your design) can be hidden via screen-reader only CSS as proposed above, or, where appropriate, the aria-label attribute can include punctuation for pauses.
If you format your code semantically, it should work fine. By the looks of your HTML structure, you're using a
<br>
tag for presentational purposes. This is not what line breaks are meant for, and thus is not a semantic use of markup.You specifically want each line to be separate, so you should put them in wrapping block level tags. You could wrap each line in a
p
ordiv
tag, and then the screen reader will separate them properly.