Is it possible to make any CSS element behave like <pre>

独自空忆成欢 提交于 2019-12-04 14:56:49

问题


I am loading some content inside an iframe. I want this content to behave as-if it was inside a <pre> tag - namely for it to respect line breaks. I am using javascript to set the style of the body element of this iframe.

I am wondering if it would be possible to set a particular style that will cause the body of this iframe to act like it's inside <pre/>.


回答1:


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 }



回答2:


If you're only interested in preserving line breaks but not whitespace then I suggest using:

body {
    white-space: pre-line;
}

This will collapse multiple consecutive white space characters into one but preserve line breaks. The downside is that it's only supported in IE versions 8 and up.




回答3:


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

body {
    white-space: pre;
}



回答4:


If you just want it to act on linebreaks like pre, use the css: white-space: pre



来源:https://stackoverflow.com/questions/4560038/is-it-possible-to-make-any-css-element-behave-like-pre

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!