我想在blockquote
标记
<blockquote>
This is my formatted text
This is the second line
</blockquote>
&#13;
而不是<pre>
代码。
<pre>
This is my formatted text
This is the second line
</pre>
&#13;
因为我无法将<blockquote>
更改为<pre>
标记,但我希望文本的显示方式与使用<pre>
标记的方式相同。
在css中有没有办法做到这一点?
答案 0 :(得分:1)
将此添加到您的css:
blockquote {
display: block;
font-family: monospace;
white-space: pre;
margin: 1em 0;
}