概述
HTML中的<blockquote>元素(或者 HTML 块级引用元素),代表其中的文字是引用内容。通常在渲染时,这部分的内容会有一定的缩进(注 中说明了如何更改)。若引文来源于网络,则可以将原内容的出处 URL 地址设置到 cite 特性上,若要以文本的形式告知读者引文的出处时,可以通过 <cite>
元素。
- Content categories Flow content, sectioning root, palpable content.
- Permitted content Flow content.
- Tag omission 不允许,开始标签和结束标签都不能省略。
- Permitted parent elements Any element that accepts flow content.
- DOM interface
HTMLQuoteElement
属性
这个元素的属性包含 全局属性.
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>
标签。