Reputation: 8293
I'm having a noob issue. I have a long string of text (with spaces) within a <p>
tag.
The string just goes on forever, and won't wrap or break at the end. Here's what I have going on:
http://jsfiddle.net/lordzardeck/RmFkk/
Upvotes: 7
Views: 7042
Reputation: 3216
you're being affected by the style at ext-all.css (line:21)
.x-grid-cell-inner { white-space: nowrap; }
You'll probably want to do something like:
.chat-message p { white-space:normal; }
Upvotes: 20