According to this article: http://html5doctor.com/the-main-element/
There are two principal distinctions:
<main>
can only be used once per document (DOM
)
<main>
cannot be a descendant of <article>
, <aside>
, <footer>
, <header>
, or <nav>
elements
This means that <article>
can be a child element of <main>
(but not the other way around)
Semantically, this means that in one document (page) you will encounter a main
section of the content of the page with (hopefully) 1+ article
(s) within it. In other words, the main article for this page.
You could also find 1+ <aside>
section(s) with 1+ article
(s) within. Consider these other articles of interest on the page (but this is not the main content of the page)