--- title: slug: Web/HTML/Element/cite tags: - HTML - Reference 参考 - Web - 元素 - 文本级语义 translation_of: Web/HTML/Element/cite ---
{{HTMLRef}}

HTML引用( Citation)标签 (<cite>) 表示一个作品的引用,且必须包含作品的标题。这个引用可能是一个根据适当的上下文约定关联引用的元数据的缩写。

{{EmbedInteractiveExample("pages/tabbed/cite.html", "tabbed-standard")}}
内容类别

流内容(Flow Content)叙述内容(Phrasing Content),可触及的内容(Palpable Content) 。

允许的内容 叙述内容(Phrasing Content)
标签省略 {{no_tag_omission}}
允许的父级元素 任何接受叙述内容(Phrasing Content)的元素。
DOM 接口 这个元素在Gecko 1.9.2 (Firefox 4)及之前的版本中 实现为HTMLElement, Firefox 实现为HTMLSpanElement。

属性

这个元素仅包含了 所有的全局属性.

使用说明:

使用说明

在 <cite> 标签中,可能引用的内容类型如下:

值得注意的是,W3C 标准允许在 <cite> 元素中包含引用内容的作者信息。然而 WHATWG 规范不允许在 <cite> 元素中出现人名。

要标明{{HTMLElement("blockquote")}} 或 {{HTMLElement("q")}}之中内容的引用来源,可以使用元素的{{htmlattrxref("cite", "blockquote")}}属性。

通常,浏览器默认使用斜体来展示<cite>元素中的内容。可以通过指定<cite>元素的{{cssxref("font-style")}}样式来覆盖这种默认行为。

示例

More information can be found in <cite>[ISO-0000]</cite>.

该段代码的输出如下:

{{EmbedLiveSample("Example", 640, 60)}}

规范

规范 状态 注释
{{SpecName('HTML WHATWG', 'text-level-semantics.html#the-cite-element', '<cite>')}} {{Spec2('HTML WHATWG')}}
{{SpecName('HTML5 W3C', 'text-level-semantics.html#the-cite-element', '<cite>')}} {{Spec2('HTML5 W3C')}}
{{SpecName('HTML4.01', 'struct/text.html#h-9.2.1', '<cite>')}} {{Spec2('HTML4.01')}}

浏览器兼容性

{{Compat("html.elements.cite")}}

相关链接