Class Dd<T extends Dd<T>>


public class Dd<T extends Dd<T>> extends PhrasingContentElement<T>
Represents an HTML <dd> element for definition descriptions.

The Dd (Definition Description) element provides the description, definition, or value for a term in a description list (Dl). It follows a Dt (Definition Term) element.

Features:

  • Provides description for definition terms
  • Used within dl (description list) elements
  • Typically indented by browsers
  • Can contain flow content

Usage:


 Dl dl = new Dl();
 dl.addChild(new Dt("HTML"));
 dl.addChild(new Dd("HyperText Markup Language"));
 
Since:
2007
Version:
1.0
Author:
Marvin P. Warble Jr.
See Also:
  • Constructor Details

    • Dd

      public Dd()
      Constructs an empty <dd> element.
    • Dd

      public Dd(String text)
      Constructs a <dd> element with text content.
      Parameters:
      text - the description text