The <main>
represents the dominant content of the <body>
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.
A document must not have more than one <main>
element that does not have the hidden
attribute specified
Content categories | Flow content, palpable content. |
---|---|
Permitted content | Flow content. |
Tag omission | None; both the starting and ending tags are mandatory. |
Permitted parents | Where flow content is expected, but only if it is a hierarchically correct main element. |
Permitted ARIA roles | The main role is applied to <main> by default, and the presentation role is permitted as well. |
DOM interface | HTMLElement |
This element only includes the global attributes.
The content of a <main>
element should be unique to the document. Content that is repeated across a set of documents or document sections such as sidebars, navigation links, copyright information, site logos, and search forms should not be included unless the search form is the main function of the page.
<main>
doesn't contribute to the document's outline; that is, unlike elements such as <body>
, headings such as <h2>
, and such, <main>
doesn't affect the DOM's concept of the structure of the page. It's strictly informative.
<!-- other content --> <main> <h1>Apples</h1> <p>The apple is the pomaceous fruit of the apple tree.</p> <article> <h2>Red Delicious</h2> <p>These bright red apples are the most common found in many supermarkets.</p> <p>... </p> <p>... </p> </article> <article> <h2>Granny Smith</h2> <p>These juicy, green apples make a great filling for apple pies.</p> <p>... </p> <p>... </p> </article> </main> <!-- other content -->
The <main>
element behaves like a main
landmark role. Landmarks can be used by assistive technology to quickly identify and navigate to large sections of the document. Prefer using the <main>
element over declaring role="main"
, unless there are legacy browser support concerns.
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 <main>
element 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 --> <main id="main-content"> <!-- main page content --> </main> </body>
Browser reader mode functionality will look for the presence of the main
element, as well as heading and content sectioning elements when converting content into a specialized reader view.
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of '<main>' in that specification. | Living Standard | |
HTML 5.1 The definition of '<main>' in that specification. | Recommendation | No change from HTML5. |
HTML5 The definition of '<main>' in that specification. | Recommendation | Initial definition. |
The <main>
element is widely supported. For Internet Explorer 11 and below, it is suggested that an ARIA role of "main"
be added to the <main>
element to ensure it is accessible (screen readers like JAWS, used in combination with older versions of Internet Explorer, will be able to understand the semantic meaning of the <main>
element once this role
attribute is included).
<main role="main"> ... </main>
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 26 | 12 | 21 | No | 16 | 7 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | 12 | 21 | Yes | 7.1 | Yes |
<html>
, <head>
, <body>
<article>
, <aside>
, <footer>
, <header>
, or <nav>
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/main