在html blockquote标签中显示文本

时间:2018-01-25 16:12:07

标签: html css

我想在blockquote标记

中显示文字



<blockquote>
  This is my formatted text 
  This is the second line
</blockquote>
&#13;
&#13;
&#13;

而不是<pre>代码。

&#13;
&#13;
<pre>
  This is my formatted text
  This is the second line
</pre>
&#13;
&#13;
&#13;

因为我无法将<blockquote>更改为<pre>标记,但我希望文本的显示方式与使用<pre>标记的方式相同。

在css中有没有办法做到这一点?

1 个答案:

答案 0 :(得分:1)

将此添加到您的css:

blockquote {
    display: block;
    font-family: monospace;
    white-space: pre;
    margin: 1em 0;
}