Skip to content

<dd> - Description Details

List description HTML 2.0

The <dd> element represents the description, definition, or value for a term defined by a <dt> element in a description list (<dl>). It provides the details or explanation for the associated term.

Result
<dl>
<dt>Term</dt>
<dd>Description or definition</dd>
</dl>

The <dd> element must be a child of a <dl> element and typically follows a <dt> element.

The <dd> element supports all global attributes like id, class, style, and lang.

<dd id="definition-1" class="important-description">
Description text
</dd>
Result
Result
Result

One term can have multiple <dd> elements:

Result

Descriptions can contain complex content:

Result
Result
Result
Result
Result

Screen readers announce descriptions in context with their terms:

<!-- Screen reader: "Description list. Term: API. Description: Application Programming Interface" -->
<dl>
<dt>API</dt>
<dd>Application Programming Interface</dd>
</dl>

Provide thorough, understandable descriptions:

<dl>
<dt>Cache Duration</dt>
<dd>The amount of time (in seconds) that cached data remains valid before being refreshed. Default: 3600 (1 hour)</dd>
</dl>

Keep terms and descriptions in logical order:

Result
<dt>Return Policy</dt>
<dd>Items can be returned within 30 days of purchase for a full refund. Items must be unused and in original packaging.</dd>
<dl>
<dt>Username</dt>
<dd>john_doe</dd>
</dl>
<dt>Status</dt>
<dd>Active since January 2024</dd>
Result
Result
Result
BrowserVersionNotes
Chrome1+Full support
Firefox1+Full support
Safari1+Full support
Edge12+Full support
IE3+Full support

The <dd> element has been supported since early HTML versions.