LordZardeck
LordZardeck

Reputation: 8293

Text won't wrap/break withing div or paragraph

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

Answers (1)

ltiong_dbl
ltiong_dbl

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

Related Questions