Glubase - share your knowledge


All / Computers / Programming / HTML / XHTML





  • View Command

HTML / XHTML Reference

HTML / XHTML dd definition

Browser support
IEFFOpSaf
FullFullFullFull

Type: block-level element

Syntax

<dd> ... </dd>

Description

The dd tag defines the definition description for an entry in a definition list(dl).

Attributes

Common attributes.

Contained in

<dl> .. </dl>

Example

[Try this example yourself]
<dl>
  <dt>Entry1</dt>
  <dd>
    <p>
      DefinitionText1
    </p>
  </dd>
  <dt>Entry2</dt>
  <dt>Entry3</dt>
  <dd>
    <p>
      DefinitionText2
    </p>
  </dd>
</dl>

Output

Entry1

DefinitionText1

Entry2
Entry3

DefinitionText2

  • Comments

No comments added.