Use <article>
page element within <main>
element to create textual inner pages:
<article>
html & text of article
</article>
Use <section>
element within <article>
to maximize space available for article body:
<article>
<header>Title</header>
<section>
Article body will occupy maxim space pushing
header and footer to the edges of the page.
</section>
<footer>footnote</footer>
</article>
Additional functionality is added to article page element using custom page attributes.
Worth to remember:
- Multiple article pages per web document are allowed
- Article element can be part of figure element
- Custom attribute 'fit' is not applicable to article page element
See usage examples for article
element.