sanity
sanity

Reputation: 35772

How do I make text wrap in a JQuery Mobile list?

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

Answers (1)

r0m4n
r0m4n

Reputation: 3512

Depending on the object, you should be able to add the following in your CSS:

white-space: normal;

Upvotes: 11

Related Questions