Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

块级引用

概述

HTML中的<blockquote>元素(或者 HTML 块级引用元素),代表其中的文字是引用内容。通常在渲染时,这部分的内容会有一定的缩进( 中说明了如何更改)。若引文来源于网络,则可以将原内容的出处 URL 地址设置到 cite 特性上,若要以文本的形式告知读者引文的出处时,可以通过 <cite> 元素。

属性

这个元素的属性包含 全局属性.

cite
是一个标注引用的信息的来源文档或者相关信息的URL。通常用来描述能够解释引文的上下文或者引用的信息。

实例

<blockquote cite="https://developer.mozilla.org">
  <p>This is a quotation taken from the Mozilla Developer Center.</p>
</blockquote>

上面的HTML代码将会生成:

This is a quotation taken from the Mozilla Developer Center.

说明

说明 状态
WHATWG HTML Living Standard
<blockquote>
Living Standard  
HTML5
<blockquote>
Recommendation  
HTML 4.01 Specification
<blockquote>
Recommendation  

浏览器支持

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) 1.0 (1.7 or earlier) (Yes) (Yes) (Yes)
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) 1.0 (1.0) (Yes) (Yes) (Yes)

可以使用  CSS 中的 margin属性来改变 <blockquote>的缩进。

如果想要使用短引用(行间引用),可以使用<q> 标签。

参照

  •  <q>  标签,行间引用
  •  <cite> 标签,引用出处。

文档标签和贡献者

标签: 
 此页面的贡献者: pantao, lisnb
 最后编辑者: pantao,