Reputation: 35772
It seems that by default, text within <P> tags in a Query Mobile list item doesn't wrap, rather it is truncated at the edge of the screen with a "...".
How do I change this behavior such that it wraps?
Upvotes: 1
Views: 7528
Reputation: 3512
Depending on the object, you should be able to add the following in your CSS:
white-space: normal;
Upvotes: 11