引用

<blockquote>元素用来标记那些会占用一整段的较长的引用。注意这里的<p>也被包含在<blockquote>.举个例子:

<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
    <head>
        <title>TODO supply a title</title>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
    </head>
    <body>
        <div>TODO write content</div>
        <blockquote cite="http://en.wikipedia.org/wiki/winnie-the-pooh"><p>
                学习是一下就可以学好的吗?
            </p></blockquote>
        <p>不是,用汉代王充那句话说就是<q>冰冻三尺非一日之寒</q></p>
    </body>
</html>

  

原文地址:https://www.cnblogs.com/q2546/p/9327622.html