HTML 标签:dd
定义列表(Description list)的描述。在定义列表(description lists)(使用 dl 元素)中与术语(terms)(使用 dt 元素)分组。
可选属性
示例
<dl>
<dt>Dog</dt>
<dd>A carnivorous mammal of the family Canidae.</dd>
<dt>HTML</dt>
<dd>HyperText Markup Language.</dd>
<dd>A language used to format web documents.</dd>
</dl>
