I have an XML file that I am attempting to display solely by adding a CSS.

The XML has many elements that look like this:

<text>
this is some text.

Yeah, some text.
</text>

<text>
This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. 
</text>

I want the CSS to preserve line breaks but to automatically wrap the text.

If my CSS looks like this:

text {
    white-space: pre;
}

I get my blank lines, but the text goes off the right margin.

if my CSS looks like this:

text {
    width: 500px;
}

I get my wrapping but lose my blank lines.

Is there any way to get both?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

If you have white-space: pre, the text is preserved as is with all formatting (multiple whitespace is not truncated to one) so that is why your long lines of text are not breaking.

You can use white-space: pre-line to get what you want. Keep in mind it doesn't work in < IE8 and is buggy in IE9. Source.

Example

Example

jsFiddle.

Further Reading.

link|improve this answer
Wow! That works like a charm. I didn't know that option was available. I guess that's what I get for just googling rather than going to the documentation. – vy32 Apr 22 '11 at 3:55
feedback

How about this:

text {
    white-space: pre;
    width: 500px;
}
link|improve this answer
did you try this? – vy32 May 3 '11 at 3:21
feedback

This is my hacky CSS workaround - dynamic text wraps if there is a space. If there is no space, the containing element expands to fit the content:

text {
  width: 120px; /* sets the width text will wrap into if there are spaces */
  display: table-cell; /* expands the element to fit text if it can't break */
}

Breaks are respected.

link|improve this answer
Thanks, but I prefer the standards-based solution. Not sure what your system does if there is no cell? – vy32 May 3 '11 at 3:21
feedback

Your Answer

 
or
required, but never shown

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