vote up 6 vote down star

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

flag

71% accept rate

6 Answers

vote up 8 vote down check

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

link|flag
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
vote up 13 vote down

See the white-space CSS property.

.like-pre { white-space: pre; }
link|flag
vote up 10 vote down

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.

link|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

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.

link|flag
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
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
vote up -4 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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