<dt>: The Description Term element

<dt> HTML 元素指定描述或定义列表中的术语,因此必须在 <dl> 元素内使用。通常后跟 <dd> 元素;然而,一行中的多个 <dt> 元素表示多个术语,这些术语均由紧邻的下一个 <dd> 元素定义。

¥The <dt> HTML element specifies a term in a description or definition list, and as such must be used inside a <dl> element. It is usually followed by a <dd> element; however, multiple <dt> elements in a row indicate several terms that are all defined by the immediate next <dd> element.

随后的 <dd>(描述详细信息)元素提供与使用 <dt> 指定的术语关联的定义或其他相关文本。

¥The subsequent <dd> (Description Details) element provides the definition or other related text associated with the term specified using <dt>.

Try it

属性

¥Attributes

该元素仅包含 全局属性

¥This element only includes the global attributes.

示例

¥Examples

例如,请参见 <dl> 元素提供的示例

¥For examples, see the examples provided for the <dl> element.

技术总结

¥Technical summary

内容类别 没有任何。
允许的内容 流量内容,但没有 <header><footer>、分段内容或标题内容后代。
标签遗漏 开始标记是必需的。如果该元素后面紧跟着另一个 <dt> 元素或 <dd> 元素,或者如果父元素中没有更多内容,则可以省略结束标记。
允许的父级 <dl> 或(在 WHATWG HTML、W3C HTML 5.2 及更高版本中)<dl> 的子元素 <div>
此元素可以在 <dd> 或另一个 <dt> 元素之前使用。
隐式 ARIA 角色 没有对应的角色
允许的 ARIA 角色 listitem
DOM 接口 HTMLElement 从 Gecko 1.9.2 (Firefox 4) 开始,Firefox 为该元素实现了 HTMLSpanElement 接口。

规范

Specification
HTML Standard
# the-dt-element

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看

¥See also