htmlcss



The HTML <dd></dd> element defines a definition description in a <dl> element. This element can occur only as a child element of a definition list and it has to follow a <dt> element.


Attribute

Attribute Value Description
nowrap yes
no
If the value of this attribute is set to yes, the definition text will not wrap. The default value is no.
Global Attributes

See Global HTML Attributes.


HTML example:

<dl>
    <dt>Firefox</dt>
    <dd>A free, open source, cross-platform, graphical web browser
        developed by the Mozilla Corporation and hundreds of volunteers.</dd>
</dl>

External Links