Is it possible to make any CSS element behave like

前端 未结 4 1107
萌比男神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 20:50

    you can find the default setting or how they're suppose to be at http://www.w3.org/TR/CSS2/sample.html just apply the same style to the element you want to behave as a pre element and voila you're done

    p.s. which is basically

    pre{ white-space: pre ; display: block; unicode-bidi: embed }
    

提交回复
热议问题