元素dd

HTML文件的基本结构

dd
适用DTD:Strict Transitional Frameset   适用浏览器:All
释义 定义说明(definition description)

语法
<dd 属性="属性值">~标签内容~</dd>

说明
dd为dl的子元素,用来显示定义列表中定义术语dt元素的说明
如果一条术语有多条说明,那每一条说明都应包装在自己的dd元素内;如果一条说明有多个段落,那应该包含在一个dd元素中,而不是分装在多个dd中。一个dd的全部内容应该构成一条说明
dd是块级元素,可以包含文本,行内元素和其他块级元素
在HTML中dd元素的终止标签可省略

属性
属性 属性值 说明
① 通用属性:id、class、title、style、dir、lang、xml:lang 查看
nbsp;

示范
定义列表:
<dl>
<dt>
definition term1</dt><dd>definition description1</dd>
<dt>
definition term2</dt><dd>definition description2</dd>
... ...
</dl>

范例
下面的例子显示了XHTML文件基础结构: 运行打印
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>元素dl、dt、dd</title>
</head>
<body>
<hr>定义列表演示:<br>
<em>Phrase elements</em> add structural information to text fragments. The usual meanings of phrase elements are following:
<dl>
<dt><em>EM</em></dt>
<dd>Indicates emphasis. </dd>
<dt><em>STRONG</em></dt>
<dd>Indicates stronger emphasis. </dd>
<dt><em>CITE</em></dt>
<dd>Contains a citation or a reference to other sources. </dd>
</dl><br>
Here is an example with <font color="red">multiple</font> terms and descriptions:
<DL>
<DT>Center
<DT>Centre
<DD> A point equidistant from all points on the surface of a sphere.
<DD> In some field sports, the player who holds the middle position on the field, court, or forward line.
</DL><br>
<hr>列表的嵌套:<br>
List element may be nested within other lists:
<ol>
<li>Mix Marinade
<ul>
<li>2 slices ginger <em>(smashed)</em></li>
<li>1 T. rice wine or sake</li>
<li>1 t. salt</li>
<li>2 T. peanut</li>
</ul>
</li>
<li>Sault the seasonings</li>
<li>Add fish sauce</li>
</ol>
</body>
</html>

参阅
ul
ol
li
dl
dt
dir
menu