<blockquote> 标签是 HTML 中用于定义长引用的元素。通常情况下,<blockquote> 用于包裹一段引用的文字,表示这部分文字是从其他来源引用而来的。

以下是一个简单的 <blockquote> 标签的示例:
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Blockquote Tag Example</title>
</head>
<body>
  <p>Here is a quote from an article:</p>
  
  <blockquote>
    <p>This is the quoted text. It may span multiple paragraphs and have its own formatting.</p>
    <footer>— Author of the Article</footer>
  </blockquote>
</body>
</html>

在这个例子中,<blockquote> 元素包裹了一段引用的文字,并且可能包含多个段落。通常,浏览器会为 <blockquote> 中的文本添加一些默认样式,如缩进等,以突显引用的内容。

如果你知道引用的来源,也可以使用 <footer> 元素包裹作者信息或引用的来源,以提供更多的上下文。

总的来说,<blockquote> 是用于语义化表示引用的标签,可以帮助浏览器和搜索引擎理解文档的结构。


转载请注明出处:http://www.zyzy.cn/article/detail/3701/HTML5