用 blockquote 阻止

所述 blockquote 元件可以用于一个(块级)引号:

<blockquote>
  <p>The answer is 42.</p>
</blockquote>

源 URL(cite 属性)

所述 cite 属性可以被用来引用所引用源的 URL:

<blockquote cite="http://example.com/blog/hello-world">
  <p>The answer is 42.</p>
</blockquote>

请注意,浏览器通常不显示此 URL,因此如果源是相关的,则还应添加超链接(a 元素)(请参阅“ 引用/归因 ”部分,了解此链接的放置位置)。

引文/署名

Version <= 4.01

引文/归属不应该是 blockquote 元素的一部分:

<blockquote cite="http://example.com/blog/hello-world">
  <p>The answer is 42.</p>
</blockquote>
<p>Source: <cite><a href="http://example.com/blog/hello-world" rel="external">Hello World</a></cite></p>

你可以添加 div 元素来对引用和引文进行分组,但它无法在语义上将它们关联起来。

所述 cite 元件可以被用于引用源的引用(但不为作者姓名)。

Version = 五

引文/属性(例如,提供源 URL 的超链接)可以在 blockquote 内,但在这种情况下,它必须在 cite 元素(用于文本内属性)或 footer 元素内:

<blockquote cite="http://example.com/blog/hello-world">
  <p>The answer is 42.</p>
  <footer>
    <p>Source: <cite><a href="http://example.com/blog/hello-world" rel="external">Hello World</a></cite></p>
  </footer>
</blockquote>

cite 元素可用于引用源的引用,或引号单的作者的名字。