Is it possible to make any CSS element behave like

前端 未结 4 1093
萌比男神i
萌比男神i 2021-02-06 20:40

I am loading some content inside an iframe. I want this content to behave as-if it was inside a

 tag - namely for it to respect line breaks.  I am using         


        
4条回答
  •  鱼传尺愫
    2021-02-06 21:03

    Try setting the element's white-space style to a value of pre.

    body {
        white-space: pre;
    }
    

提交回复
热议问题