Pages tagged with accessibility
- Accessible hiding content with CSS - Using display:none can also hide content from screen readers. If you do this, best use visibility:hidden as well, to ensure consistent behaviour in all readers.
.hide{
display:none;
visibility:hidden;
}
To hide from visual display but not screen...
- Accessible Javascript - WAI-ARIA Overview
ARIA will allow accessibility information to be added to XHTML markup in order to inform user agents as to the nature of dynamic content. The goal is to make ARIA features standard from HTML 5.
Accessible Web 2.0 Applications with W...
Go to top