-
Notifications
You must be signed in to change notification settings - Fork 25
Accessibility
Ryan Johnson edited this page Nov 1, 2017
·
22 revisions
- 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.
- Must have
| Link | Anchor |
|---|---|
<a href="#deep-link">Deep Link</a> |
<a id="deep-link"></a> |
| Receives focus in tab order. | No focus given. |