English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML Referenzhandbuch

Vollständiges Verzeichnis der HTML-Tags

HTML: <aside> Tag

Das HTML <aside>-Tag ist ein HTML5Ein Element, das einen Teil definiert, der tangential zu dem umgebenden Inhalt im HTML-Dokument steht. Dieses Tag wird auch als <aside>-Element bezeichnet.

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>Grundlegendes Tutorial-Netz(oldtoolbag.com)</title> 
</head>
<body>
<article>
    <h1>Artikeltitel</h1>
    <p>Text, der unter dem Artikel angezeigt wird</p>
</article>
<aside>
  <p>Text, der daneben appears</p>
</aside>
 
<aside>
  <h4>Epcot Center</h4>
  <p>Epcot Center ist ein Themenpark in Disney World in Florida.</p>
</aside>
</body>
</html>
Testen Sie, ob es funktioniert ‹/›

Browserkompatibilität

IEFirefoxOperaChromeSafari

IE 9+Firefox, Opera, Chrome and Safari all support the <aside> tag.

Note: IE 8 or earlier versions of IE browsers do not support the <aside> tag.

tags and usage instructions

The HTML <aside> element is found within the <body> tag, it defines and explains the use of HTML5elements.
The <aside> tag can be used for any of the following: advertisements, glossary definitions, author biographies, profile information, or related links.

for IE 9IE browsers, please use HTML5shiv, a JavaScript solution that can be used for new HTML5elements are supported by the <aside> element, such as: <header>, <main>, <article>, <section>, <aside>, <nav>, <footer>.

HTML 4.01 with HTML5difference

<aside> Tag is an HTML5 new tag.

Hint and Notice

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

Global Attributes

Support for <aside> Tag Global Attributes of HTML.

Event Attributes

Support for <aside> Tag HTML Event Attributes.