<blockquote>:块级引用元素 - HTML(超文本标记语言) 编辑

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

Content categoriesFlow content, sectioning root, palpable content.
Permitted contentFlow content.
Tag omission不允许,开始标签和结束标签都不能省略。
Permitted parentsAny element that accepts flow content.
Permitted ARIA rolesAny
DOM interfaceHTMLQuoteElement

属性

此元素的属性包含 全局属性

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

使用备注

若要修改被引用内容的缩进距离,可以使用 CSS margin-left 和/或 margin-right 属性,或使用 margin 缩写属性。

若想使用在行内引用较短的内容而非创建一个单独的引用块,可使用 <q>(Quotation)元素。

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

例子

下面的这个例子演示了使用 <blockquote> 元素引用一段来自 RFC 1149 的内容,以禽类作为载体的IP 数据包传输标准。

<blockquote cite="https://tools.ietf.org/html/rfc1149">
  <p>Avian carriers can provide high delay, low
  throughput, and low altitude service.  The
  connection topology is limited to a single
  point-to-point path for each carrier, used with
  standard carriers, but many carriers can be used
  without significant interference with each other,
  outside of early spring.  This is because of the 3D
  ether space available to the carriers, in contrast
  to the 1D ether used by IEEE802.3.  The carriers
  have an intrinsic collision avoidance system, which
  increases availability.</p>
</blockquote>

上面的HTML代码将会生成:

规范

规范状态备注
HTML Living Standard
<blockquote>
Living Standard
HTML5
<blockquote>
Recommendation
HTML 4.01 Specification
<blockquote>
Recommendation

浏览器兼容性

BCD tables only load in the browser

The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

参见

  • 适用于行内引用的 <q> 元素。
  • 适用于来源引文的 <cite> 元素。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:114 次

字数:7445

最后编辑:6年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文