Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to to change a <span> tag (or <div>) to preformat its contents like a <pre> tag would using only CSS?

share|improve this question

7 Answers

up vote 22 down vote accepted

Look at the w3C defaults. Copy all the settings for PRE and put them into your own class.

share|improve this answer
1  
It's a good idea to do it this way in order to understand where these defaults come from. – Diodeus Oct 21 '08 at 15:07

See the white-space CSS property.

.like-pre { white-space: pre; }
share|improve this answer

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.

share|improve this answer

Specifically, the property you're looking at is:

white-space: pre

http://www.quirksmode.org/css/whitespace.html
http://www.w3.org/TR/CSS21/text.html#white-space-prop

share|improve this answer

Why not just use the <pre> tag, instead of the span tag? Both are inline, so both should behave in the way you would like. If you have a problem overriding the entire definition of <pre>, just give it a class/id.

share|improve this answer
Sometimes you already have a span on a page and can't change it, like if it's part of an existing CMS system. – Mr. Shiny and New 安宇 Oct 20 '08 at 17:37
1  
Uh, the pre tag is a block. – eyelidlessness Oct 20 '08 at 17:44
B/c the framework is refusing to put the contents under my <pre> the way I'm asking it to. I could work around it, but that's a lot harder than just setting a few CSS props. – jsight Oct 20 '08 at 18:04

Try this

span {
    white-space: pre;
    font-family: monospace;
    display: block;
    unicode-bidi: embed
}
share|improve this answer

This isn't possible using just css.

However you can do it clientside using javascript. A good library such as jQuery would help you there.

Or serverside by processing the html. There you could possibly use xml tranforms or a regular expressions.

Could you describe in more detail what you are trying to accomplish.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.