I feel silly for not being able to figure this out, but how do I turn off wordwrap? the css word-wrap property can be forced on with break-word, but cannot be forced off (only can be left alone with normal value).

How do I force word wrap off?

link|improve this question

feedback

2 Answers

up vote 20 down vote accepted

You need to use the CSS white-space attribute.

In particular, white-space: nowrap and white-space: pre are the most commonly used values. The first one seems to be what you 're after.

link|improve this answer
This works really nice on table cells! – Mvision Oct 19 '11 at 11:55
feedback

Normal is off. If setting it to normal doesn't work, post some example code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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