HTML <aside> 側邊欄 - 跟主要區塊內容無關的區塊

<aside> 標籤 (tag) 是用來表示此內容是跟主要內容沒直接關係的區塊 (related to, but separate from),通常是作為頁面的額外資訊,可以放在 <aside> 中的像是網頁側邊欄資訊、廣告等。

<aside> 的語意也提示搜尋引擎或開發者這區塊可以直接從主要內容中移除來不看。

舉個例子:

<article>
  <p>
    The Disney movie <cite>The Little Mermaid</cite> was
    first released to theatres in 1989.
  </p>
  <aside>
    <p>
      The movie earned $87 million during its initial release.
    </p>
  </aside>
  <p>
    More info about the movie...
  </p>
</article>
<aside> 英文雖然叫 aisde,但並不是說排版上一定要放側邊欄啦。