If you find this helpful, please click the Google Button to the left, if it is white, to make it turn blue or red. Thank you! (It also helps find this page again more easily.) |
The <aside> Tag in HTML 5
The aside element is used for an HTML sidebar and is created using the <aside>
tag, which is one of the sectioning tags in HTML 5. An <aside>
separates content that departs from the theme of the main article, such as advertising, comments, an author's biography, background information on a news story or any other tangential content remotely related to the main article. The content in an aside element is less essential to the main text of an article than content in a figure element, which is usually referenced by the main article text.
For the main theme of an HTML document, the <article> tag is used. The <section> tag can be used to identify sections within an <aside> or <article>, such as the "Tag Summary", "Tag Syntax", "Element Attributes", "Tag Examples" and "What's New / Changes" sections on this page.
<aside> Tag Syntax
Rules for coding HTML aside
elements
<body> ... ... flow content expected ... <aside> ... flow content ... </aside> ... </body>
- Inside an element where flow content is allowed, code one or more optional aside elements.
- Begin each aside element with a starting <aside> tag. The element name uses lower case letters and should be in the HTML namespace, which it will pick up automatically from the
xmlns
attribute on the <html> tag. - Include any HTML global attributes on the <aside> tag as appropriate.
- End the aside element with a matching
</aside>
closing tag. - Inside the aside element, include any flow content as appropriate.
<aside> Content Model
Content of the <aside> Tag
The content of the aside element can include HTML comments, text and any tags that can be used in flow content.
<aside> Tag Attributes
Attributes of the <aside> tag
global attributes | The only attributes that can be coded on the <aside> tag are the common HTML attributes. |
<aside> Tag Examples
Examples of the aside
tag in HTML 5
Changes in HTML 5 - <aside> Tag
What's new in HTML 5
The <aside> tag is one of the new elements in HTML 5. It is one of the new sectioning tags in HTML 5, which are intended to reduce the need to use <div> tags for sectioning purposes.
Differences between HTML 5 and earlier versions of HTML
The <aside> tag did not exist in older versions of HTML.
The 2000-2010 Recommendations from the W3C HTML Working Group defined the HTML namespace for the names of all HTML element types, which now includes the aside element name. In older (pre-2000) versions of HTML, element type names were not associated with a namespace.