We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://developers.google.com/web/fundamentals/accessibility/
https://www.nngroup.com/articles/errors-forms-design-guidelines/
tablist
<ul>
presentation
<li>
tab
<a>
href
aria-controls
id
aria-selected="true"
tabpanel
<section>
aria-labelledby
hidden
https://gist.github.com/jonathantneal/435478e415bfe4f54d06
The text was updated successfully, but these errors were encountered:
alessandromenini
No branches or pull requests
General
https://developers.google.com/web/fundamentals/accessibility/
Forms
https://www.nngroup.com/articles/errors-forms-design-guidelines/
Tabs
tablist
role to the<ul>
to indicate it contains tabs.presentation
role to each<li>
to bypass its list item state.tab
role to each<a>
to incidate it is an actual tab.href
andaria-controls
to each<a>
to reference its tab panel.id
to each<a>
as a reference for its tab panel.aria-selected="true"
to the active<a>
tab.tabpanel
role to each<section>
to indicate it is a tab panel.id
to each<section>
as a reference for its tab.aria-labelledby
to each<section>
to reference its label.hidden
to each inactive<section>
to indicate it is hidden.https://gist.github.com/jonathantneal/435478e415bfe4f54d06
The text was updated successfully, but these errors were encountered: