You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Jason, I am learning more about more accessible coding and have a question regarding aria-label="slide". Would it be better to have the ability to give each slide a name so it was more clear what the slide was depicting? When testing with my screen reader, although I gave a custom region label, there is no information when viewing this group and I need to dig deeper to learn about that slide.
role="tabpanel"
since these don't really look like tabs, especially when multiple slides are visible at a time.aria-hidden="false"
from all visible slides, sincefalse
is the default value and all this really does is make AT work harder for no reason.tabindex="-1"
, since slides should never receive focus anyway.role="group"
to each slidearia-label="slide"
.useGroupRole
setting that can be used to turn off / on therole="group"
andaria-label
.The text was updated successfully, but these errors were encountered: