I'm trying to override the default behavior of list items and buttons in jQuery Mobile, which has text which doesn't fit on one line as hidden overflow.

If you view this on a skinny browser window or iPhone you'll see what I mean: http://m.gizmag.com

I'd like to be able to wrap the text in the h3 and p tags of each list item onto new lines.

Thanks in advance!

link|improve this question
feedback

3 Answers

Try setting a style of "white-space:normal" for the elements. I just did this with an anchor(a) element inside a JQuery Mobile listview-styled li, and it worked to wrap the text as I expected... I used Chrome's developer tools to determine where the CSS attributes were coming from and interactively changed them to make it work the way I wanted.

-- Derek

link|improve this answer
That's a good idea to work it out. It would be nice to create a CSS class that could do that. I also thought of using marquee behaviour. – naugtur Dec 9 '10 at 11:21
Don't know why you didn't get this question. "white-space: normal" worked perfect for me. – swajak Dec 21 '10 at 0:17
sweet thanks that worked perfect – mcgrailm Apr 21 '11 at 2:44
It worked for me as well! :) – Parris Dec 2 '11 at 3:59
feedback

If feasible, enclosing it inside a <div> will also make it wrap. (But finding the affected element and declaring white-space:normal is the more proper solution)

Source: http://forum.jquery.com/topic/list-items-are-truncating-text-is-there-a-way-around-this

link|improve this answer
feedback

Good man. Worked like a breeze after I understood (am not exactly a web master...) that it went simply like this in my code to make my paragraph wrapping:

<p style="white-space:normal">My content here will wrap</p>

I was trying to workout the css... bless on me. :)

Cheers

Alex

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.