Skip to content

Latest commit

 

History

History
48 lines (35 loc) · 2.78 KB

File metadata and controls

48 lines (35 loc) · 2.78 KB
id section
Skip to content
components

import { Checkbox, List, ListItem } from '@patternfly/react-core';

Accessibility

To implement an accessible PatternFly skip to content:

  • Render the skip to content as the first focusable element on the page.
  • Ensure that the skip to content href is properly linked to the main content of the page. You may have to add context to the href if there are any query parameters in the URL.

Testing

At a minimum, a skip to content should meet the following criteria:

The skip to content's href is linked to the main content of the page.} /> Depending on where focus is on the page, Tab navigates to the skip to content or the next focusable element, and Shift + Tab navigates to the previous focusable element or the skip to content. Since the skip to content should be the first focusable element on a page, the previous focusable element may typically be an item in the browser toolbar.} /> Enter is typically the only key that activates links.} />

React customization

The following React props have been provided for more fine-tuned control over accessibility.

Prop Applied to Reason
href="[id of the main content container]" SkipToContent Links the skip to content to the main content. Typically this will be a jump link, e.g. href="#main".

HTML/CSS customization

The following HTML attributes and PatternFly classes can be used for more fine-tuned control over accessibility.

Attribute or class Applied to Reason
href="[id of the main content container]" .pf-v5-c-skip-to-content > a.pf-v5-c-button Links the skip to content to the main content. Typically this will be a jump link, e.g. href="#main".