After browsing a number of Google and other SO articles, I've decided to ask my question plainly in hopes of a simple, direct answer.
To add one further step to the discussion on Does opacity:0 have exactly the same effect as visibility:hidden: I understand that display:none
and visibility:hidden
hide elements from screenreaders and the like, but what about opacity:0
?
The table in one of the answers to the linked question notes that opacity participates in taborder, so does that necessarily mean it will be mapped to the accessibility API?
Setting a giant negative text-indent
is typically offered as an alternative to display: none
and visibility: hidden
for dropdown menus, but I'd like to fade my menus in and out without JavaScript, while making sure I don't hide them from screen readers.