ARIA: Main role - Accessibility 编辑
Draft
This page is not complete.
The main
landmark role is used to indicate the primary content of a document. The main content area consists of content that is directly related to or expands upon the central topic of a document, or the central functionality of an application.
<div id="main" role="main">
<h1>Avocados</h1>
<!-- main section content -->
</div>
This is the main section of a document that discusses avocados. Subsections of this document could discuss their history, the different types, regions where they grow, etc.
Description
The main
role is a navigational landmark role identifying the main content of a document. Landmarks can be used by assistive technology to quickly identify and navigate to large sections of the document. By classifying and labeling sections of a page, structural information conveyed visually through layout can be represented programmatically. Screen readers use landmark roles to provide keyboard navigation to important sections of a page. For those navigating via landmark roles, the main role is an alternative for "skip to main content" links.There should only be one main
landmark role per document.
The <main>
element has a role of main
. Developers should always prefer using the correct semantic HTML element over using ARIA.
Documents and applications can be nested in the DOM, which may lead to having more than one main element as DOM descendants. If this is the case, include aria-owns
to identify the relationship of the main to it's document or application ancestor.
Example
<body> <!-- primary navigation --> <div role="main"> <h1>The The First Indochina War</h1> <!-- article content --> </div> <!-- sidebar and footer --> </body>
Accessibility concerns
Use only one main role per document
The main
landmark role should only be used once per document.
If a document contains two main
roles, say updating page content when triggered by JavaScript, the inactive main
role's presence should be removed from assistive technology via techniques such as toggling the hidden
attribute.
<main> <h1>Active <code>main</code> element</h1> <!-- content --> </main <main hidden> <h1>Hidden <code>main</code> element</h1> <!-- content --> </main>
Best practices
Prefer HTML
Using the <main>
element will automatically communicate a section has a role of main
. If at all possible, prefer using it instead.
Skip navigation
Skip navigation, also known as "skipnav", is a technique that allows an assistive technology user to quickly bypass large sections of repeated content (main navigation, info banners, etc.). This allows the user to access the main content of the page faster.
Adding an id
attribute to the element with a declaration of role="main"
allows it to be a target of a skip navigation link.
<body> <a href="#main-content">Skip to main content</a> <!-- navigation and header content --> <div id="main-content" role="main"> <!-- main page content --> </div> </body>
Added benefits
Certain technologies such as browser extensions can generate lists of all landmark roles present on a page, allowing non-screen reader users to also quickly identify and navigate to large sections of the document.
Specifications
Screen reader support
TBD
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论