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

HTML Referenzhandbuch

Vollständiges Verzeichnis der HTML-Tags

HTML: <dd> Tag

HTML <dd>-Element (HTML Beschreibungselement) wird verwendet, um eine Beschreibung eines Begriffs in einer Beschreibungsliste ( <dl>) zu kennzeichnen. Dieses Element kann nur als Kindelement eines Beschreibungslistenelements auftreten und muss ein <dt>-Element folgen.

Online-Beispiel

Beschreibungsliste mit Projekten und Beschreibungen:

!doctype html
<html>
<head>
<meta charset="UTF-8">
<title>HTML5 dd-Tag-Nutzung (Basis-Tutorial-Netz oldtoolbag.com)</title>
</head>
<body>
<dl>
  <dt>Begriff1</dt>
  <dd>Beschreibung des Begriffs1<dd>
  <dt>Begriff2</dt>
  <dd>Beschreibung des Begriffs2<dd>
</dl>
</body>
</html>
Testen Sie, um zu sehen ‹/›

In diesem HTML5In der Dokumentbeispiel haben wir eine erstellt, die2eine Liste der Beschreibungen der Begriffe (Term1 und Term2),und ihre zugehörigen Beschreibungen befinden sich im <dd>-Tag.

Browserkompatibilität

IEFirefoxOperaChromeSafari

All major browsers support the <dd> tag.

Tag Definitions and Usage Instructions

<dd> Tag is used to describe an item in a description list/name.

<dd> Tag Describes <dl> (Define a description list) and <dt> (Definition item/together with the name).

Within the <dd> tag, you can place paragraphs, line breaks, images, links, lists, and more.

For each group in the description list (i.e., term/The description must contain at least one <dt> tag followed by at least one <dd> tag. This means that you can list:

  • A term followed by a single description

  • A single term followed by multiple descriptions

  • Multiple terms followed by a single description

  • Multiple terms followed by multiple descriptions

HTML 4Differences between1 HTML5and HTML

In HTML, the <dd> tag is used to describe an entry in a definition list. 4Differences between1 .0

In HTML, the <dd> tag is used to describe an entry in a definition list.5 In HTML, the <dd> tag is used to describe an item in a description list/Name.

Global Attributes

<dd> Tag Supported Global Attributes of HTML.

Event Attributes

<dd> Tag Supported HTML Event Attributes.

Related Articles

HTML Tutorial:HTML List