HTML引用( Citation)标签 (<cite>) 表示一个作品的引用,且必须包含作品的标题。这个引用可能是一个根据适当的上下文约定关联引用的元数据的缩写。
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
内容类别 |
流内容(Flow Content),叙述内容(Phrasing Content),可触及的内容(Palpable Content) 。 |
---|---|
允许的内容 | 叙述内容(Phrasing Content) |
标签省略 | {{no_tag_omission}} |
允许的父级元素 | 任何接受叙述内容(Phrasing Content)的元素。 |
DOM 接口 | 这个元素在Gecko 1.9.2 (Firefox 4)及之前的版本中 实现为HTMLElement, Firefox 实现为HTMLSpanElement。 |
这个元素仅包含了 所有的全局属性.
使用说明:
在 <cite>
标签中,可能引用的内容类型如下:
A book
A research paper
An essay
A poem
A musical score
A song
A play or film script
A film
A television show
A game
A sculpture
A painting
A theatrical production
A play
An opera
A musical
An exhibition
A legal case report
A computer program
A web site
A web page
A blog post or comment
A forum post or comment
A tweet
A Facebook post
A written or oral statement
And so forth.
值得注意的是,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")}}