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
Tabbing through the document should eventually land me on the clickable feature list. It currently doesn't, as each item is just a flat <div>. I'd suggest adding "tabindex='0'" to each element that you expect folks to interact with (or changing them to use something which is natively focusable, like <a> or <button>).
As a second step, it would be good to ensure that they're interactwithable (yes, that's a word now) via the keyboard. :)
Thanks!
-mike
The text was updated successfully, but these errors were encountered:
Tabbing through the document should eventually land me on the clickable feature list. It currently doesn't, as each item is just a flat
<div>
. I'd suggest adding "tabindex='0'" to each element that you expect folks to interact with (or changing them to use something which is natively focusable, like<a>
or<button>
).As a second step, it would be good to ensure that they're interactwithable (yes, that's a word now) via the keyboard. :)
Thanks!
-mike
The text was updated successfully, but these errors were encountered: