HTML <dl> 标签
例子
A description list, with terms and descriptions:
<dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>
亲自尝试 »
定义和用法
这 <dl>
tag defines a description list.
这 <dl>
tag is used in conjunction with <dt> (defines terms/names) and <dd> (describes each term/name).
浏览器支持
元素 | |||||
---|---|---|---|---|---|
<dl> | 是的 | 是的 | 是的 | 是的 | 是的 |
全局属性
这 <dl>
标签还支持HTML 中的全局属性.
事件属性
这 <dl>
标签还支持HTML 中的事件属性.
相关页面
HTML tutorial: HTML Lists
HTML DOM 参考: DList Object
默认 CSS 设置
大多数浏览器会显示 <dl>
元素具有以下默认值:
例子
dl {
display: block;
margin-top: 1em;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
}
亲自尝试 »