What is the difference between these three for screen reader users?

link|improve this question

64% accept rate
I have SOME experience with screen readers, although limited, but I would think they ignore CSS... do modern screen readers also ignore javascript generated content? – Zoidberg Nov 18 '09 at 12:38
JAWS (freedomscientific.com/products/fs/jaws-product-page.asp), the most popular screen reader (webaim.org/projects/screenreadersurvey2) isn't a dedicated browser, but an application that makes other programs, such as browsers, accessible. I don't know exactly how it works, but I presume it just piggy-backs on the browser's rendering engine to decide what to say. – mercator Nov 18 '09 at 22:51
feedback

3 Answers

up vote 5 down vote accepted

refer: http://css-discuss.incutio.com/?page=ScreenreaderVisibility

display:none: will not be seen nor heard. *
visibility: hidden: will not be seen nor heard. *
text-indent: 9999: will not be seen but it will be heard.

  • Most of the screen reader will not 'speak' display:none and visibility: hidden , but there are few screen readers like pwWebSpeak and HtReader which will read even these too.
link|improve this answer
2  
I tested with NVDA screen reader and it reads those elements which is hidden by display:none – Jitendra Vyas Nov 18 '09 at 13:22
There is a similar comment in the link i have specified. RTIMO. – Rakesh Juyal Nov 18 '09 at 13:29
feedback

There's a very good summary of how screen readers interpret these properties at WebAIM.

In a nutshell, visibility: hidden and display:none will hide text from screen readers just like it does from others. All other methods will be 'visible' to a screen reader.

link|improve this answer
1  
But i downloaded NVDA screen reader software and it reads display:none content – Jitendra Vyas Dec 13 '09 at 9:04
1  
Yeah, unfortunately screen readers are as inconsistent as sighted browsers when it comes to CSS. The standard is as described above, but there will always be a few that ignore standards. – anschauung Dec 13 '09 at 16:34
feedback

There's good explanation about this in A List Apart. http://www.alistapart.com/articles/fir/ It depends on product.

PRODUCT                         DISPLAY: NONE       VISIBILITY: HIDDEN
Hal version 5.20                Does not read       Reads
IBM Home Page Reader 3.02       Does not read       Does not read
Jaws (4.02, 4.50, 5.0 beta)     Reads               Reads
OutSpoken 9  Does not read      Does not            read
Window-Eyes 4.2                 Does not read       Does not read
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.