HTML 引用

关于 HTML 引用:

(1) <q> 和 <blockquote> 用于实现长短不一的引用语
(2) <q> 用于短的引用,<blockquote> 用于长的引用
(3) 使用 <blockquote> 标签,浏览器会插入换行和外边距
(4) 使用 <q> 标签,不会有任何特殊的呈现

<!DOCTYPE HTML>
<html>
<body>

<q>
hello world hello world <br />
hello world hello world <br />
hello world hello world <br />
</q>

<blockquote>
hello world hello world <br />
hello world hello world <br />
hello world hello world <br />
</blockquote>

</body>
</html>

效果如下:

hello world hello world
hello world hello world
hello world hello world

hello world hello world
hello world hello world
hello world hello world

    

原文地址:https://www.cnblogs.com/pzk7788/p/10397811.html