<blockquote>: 块引用元素

基线 广泛可用

此功能已得到完善,可在许多设备和浏览器版本上运行。它自 2015 年 7 月.

<blockquote> HTML 元素表示所包含的文本是扩展引用。通常,这通过缩进在视觉上呈现(有关如何更改它的说明,请参见 说明)。可以使用 cite 属性给出引文的来源的 URL,而引文的文本表示可以使用 <cite> 元素给出。

试试看

属性

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

cite

一个 URL,指定引用的信息的源文档或消息。此属性旨在指向解释引文上下文或引用的信息的链接。

使用说明

根据规范,引文的归属(如果有)必须放在 <blockquote> 元素之外。

要更改应用于引文文本的缩进,请使用 CSS margin-left 和/或 margin-right 属性,或 margin 简写属性。

要包含更短的内联引用,而不是将其放在单独的块中,请使用 <q>(引用)元素。

示例

本示例演示了如何使用<blockquote> 元素引用来自 RFC 1149关于鸟类载体传输 IP 数据包的标准 的一段文字。

html
<blockquote cite="https://datatracker.ietf.org/doc/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 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>

结果

技术摘要

内容类别 流内容,分节根,可感知内容。
允许内容 流内容.
标签省略 无,开始和结束标签都是必须的。
允许的父元素 任何接受 流内容 的元素。
隐式 ARIA 角色 blockquote
允许的 ARIA 角色 任何
DOM 接口 HTMLQuoteElement

规范

规范
HTML 标准
# the-blockquote-element

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅

  • 用于内联引用的 <q> 元素。
  • 用于来源引用的 <cite> 元素。