- Mastering Responsive Web Design
- Ricardo Zea
- 150字
- 2021-07-16 20:33:20
The <article> element
The HTML Article Element (
<article>
) represents a self-contained composition in a document, page, application, or site, which is intended to be independently distributable or reusable, e.g., in syndication. This could be a forum post, a magazine or newspaper article, a blog entry, or any other independent item of content. Each<article>
should be identified, typically by including a heading (h1
-h6
element) as a child of the<article>
element.
Here are a few important points to remember about the <article>
element:
- Any self-contained content should be placed inside the
<article>
element.Self-contained means that if we take the
<article>
element and everything inside it out into another context, all the content is self-explanatory and does not need anything else around it to be understood. - An
<article>
can be nested inside another<article>
element. - There can be more than one
<article>
element in a single page.
Consider the following example:
<body> <main class="main-container" role="main"> <article class="article-container flex-container"> Content goes here </article> </main> </body>
- The Android Game Developer's Handbook
- Reactive Programming with Swift
- INSTANT Weka How-to
- 云計算通俗講義(第3版)
- Eclipse Plug-in Development:Beginner's Guide(Second Edition)
- Learning Network Forensics
- JavaScript:Moving to ES2015
- Learning Salesforce Einstein
- 單片機C語言程序設計實訓100例
- Salesforce Reporting and Dashboards
- Mastering ArcGIS Enterprise Administration
- C++語言程序設計
- UML2面向對象分析與設計(第2版)
- 算法設計與分析:基于C++編程語言的描述
- Flink入門與實戰