元素blockquote

HTML文件的基本结构

blockquote
适用DTD:Strict Transitional Frameset   适用浏览器:All
释义 长引用、块级引用(block quote)

语法
<blockquote 属性="属性值">~标签内容~</blockquote>

说明
blockquote元素,顾名思义是作为块级元素来引用别的数据的
blockquote元素的标签内容可以包含文字、段落、图片、表格等内容,其标签中的内容将会以左右缩进的方式显示
该元素的标签需成对出现,不可省略

属性
属性 属性值 说明
① cite URI URI值指向引用数据的来源
② 通用属性:id、class、title、style、dir、lang、xml:lang 查看
nbsp;

示范
<blockquote cite="引用内容的来源网址">引用文本</blockquote>

范例
下面的例子显示了XHTML文件基础结构: 运行打印
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>元素blockquote</title>
</head>
<body>
<p>This example formats an excerpt from "The Two Towers", by J.R.R. Tolkien, as a blockquote.</p>
<blockquote cite="http://www.mycom.com/tolkien/twotowers.html">
<p>They went in single file, running like hounds on a strong scent,and an eager light was in their eyes. Nearly due west the broad swath of the marching Orcs tramped its ugly slot; the sweet grass of Rohan had been bruised and blackened as they passed.</p>
</blockquote>

</body>
</html>

参阅
q
cite