How to change a span to look like a pre with CSS?

后端 未结 8 1747
你的背包
你的背包 2020-12-01 04:05

Is it possible to to change a tag (or

) to preformat its contents like a
 tag would using only CSS?         


        
8条回答
  •  情书的邮戳
    2020-12-01 04:42

    This makes a SPAN look like a PRE:

    span {
      white-space: pre;
      font-family: monospace;
      display: block;
    }
    

    Remember to change the css selector as appropriate.

提交回复
热议问题