2

I want to display text in blockquote tag

<blockquote>
  This is my formatted text 
  This is the second line
</blockquote>

instead of <pre> tag.

<pre>
  This is my formatted text
  This is the second line
</pre>

Because I couldn't change the <blockquote> to <pre> tag, but I want the text displayed in the same manner of using <pre> tag.

Are there any ways to do that in css?

j08691
  • 204,283
  • 31
  • 260
  • 272
Quy Tang
  • 3,929
  • 1
  • 31
  • 45

1 Answers1

3

Add this to your css:

blockquote {
    display: block;
    font-family: monospace;
    white-space: pre;
    margin: 1em 0;
}
Sylvan LE DEUNFF
  • 682
  • 1
  • 6
  • 21