formatting change for #2 (#24080)

This commit is contained in:
catcecilia
2018-10-22 11:32:31 -07:00
committed by Randell Dawson
parent 720931c798
commit beec57d044

View File

@ -14,6 +14,7 @@ To allow non-sighted users to skip to the main content of a site and avoid tabbi
<a tabindex="0" class="skip-link" href="#main-content">Skip to Main Content</a> <a tabindex="0" class="skip-link" href="#main-content">Skip to Main Content</a>
``` ```
<code>tabindex="0"</code> is added to ensure the link is keyboard focusable on all browsers. Further information about keyboard accessibility can be found at [webaim.org](https://webaim.org/techniques/keyboard/tabindex). <code>tabindex="0"</code> is added to ensure the link is keyboard focusable on all browsers. Further information about keyboard accessibility can be found at [webaim.org](https://webaim.org/techniques/keyboard/tabindex).
2. The "skip navigation" link needs to be associated with the main html tag in your webpage document using the ID tag. 2. The "skip navigation" link needs to be associated with the main html tag in your webpage document using the ID tag.
```html ```html
<main id="main-content"> <main id="main-content">