<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
xmlnsattribute 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.