This check affects the following users who have:
This section provides some pass and fail examples.
A Skip to Main Content link is placed at the top of the page and is visible when focused.
<a href="#main-content" class="skip-link">Skip to main content</a>
.skip-link {
position: absolute;
top: -40px;
left: 10px;
background: #000;
color: #fff;
padding: 10px;
z-index: 100;
}
.skip-link:focus {
top: 10px;
}
Landmark regions use HTML5 structural elements like <main>, <nav>, and <header> so that screen reader users can skip repeated content.
<header>
<nav>...</nav>
</header>
<main id="main-content">
<h1>Page Title</h1>
<p>Main content goes here...</p>
</main>ARIA landmarks provide a way for assistive technologies to recognize page sections.
<nav role="navigation">...</nav>
<main role="main">...</main>For example, a page that forces users to navigate through the entire menu before they reach the content.
For example, a skip link that exists but is always hidden with CSS, such as, display: none, without a focus state.
For example, a site with multiple repeated sections but no <main> element or ARIA landmarks.
This section provides information on how to review and fix the issue.
When this check flags a page on your Web Governance scan, confirm that a method exists for users to bypass repeated content.
Ensure that the page provides a way for users to bypass repeated content. The check passes on the page if at least one of the following review checks is present and implemented correctly.
Passes if:
There is a keyboard-accessible way to jump straight to the main content.
Passes if:
Users can collapse the repeated content with the keyboard and reach the main content easily.
<h1> through <h6>.Passes if:
The main content starts with a semantic HTML heading.
<main> elementrole="main"Passes if:
The main content is inside a proper main landmark such as <main> or role="main".
If at least one of the four checks is present and implemented correctly on the page, you can mark this check as Reviewed.
For further instructions, visit How to review an accessibility issue.
Ensure that at least one of the review checks is implemented correctly for each failing issue in the HTML code of your website and then mark this check as Reviewed.
For further instructions, visit How to review an accessibility issue.
Act rule: Bypass Blocks of Repeated Content
If this content did not answer your questions, try searching or contacting our support team for further assistance.
If this content did not answer your questions, try searching or contacting our support team for further assistance.