Skip to content

Accessibility

Ryan Johnson edited this page Nov 1, 2017 · 22 revisions

Resources

Native Focusable Elements

  • Buttons (<button>, <input type="button">)
  • Inputs (<input>, <textarea>)
  • Links (<a href="...">)
    • Must have [href] to be a link
    • Without [href] it's an anchor and does not received focus in tab order.
Link Anchor
<a href="#deep-link">Deep Link</a> <a id="deep-link"></a>
Receives focus in tab order. No focus given.
Clone this wiki locally