英[??sa?d] 美[??sa?d]

adv. Beside, on one side, to the side, to the side; put aside (...let’s not talk about it for now), keep; [play] alone (white), aside (white); (used after nouns) except...

n.[Drama] narration, monologue; whispered words, digressions

prep.next to...

Plural: asides

html aside tag syntax

What does

aside mean?

aside is a semantic tag, usually used to describe content that is not related to the main content of the document. The content of the aside tag should be related to nearby content.

Function: Define content outside of the content it is in.

Note: <aside> The content can be used as a sidebar for articles.

Note: Content aside should be relevant to nearby content. The <aside> tag is a new tag in HTML 5.

html aside tag example

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<p>php中文網原創(chuàng)《獨孤九賤》</p>
<aside>
    <h4>《獨孤九賤》</h4>
    php中文網原創(chuàng)出品:php中文網原創(chuàng)《獨孤九賤》系列課程,課程以惡搞,段子為主題風格!輕松的教學風格,簡短的教學模式,讓同學們在不知不覺中,學會了php!
</aside>
</body>
</html>

Run instance ?

Click the "Run instance" button to view the online instance