JQuery Mobile <LI> Text Length

I am using jQuery Mobile and has <LI>long text (description A).

My problem is that it only displays a few words following the "..." (3 dots)

How can I make it show the entire line?

+3
source share
2 answers

you can use formatting like jqmobile in docs

enter image description here

and then overwrite / replace / add your own .ui-li-desc, for example, using white-space: normal;instead of existingwhite-space: nowrap;

so you can:

enter image description here

+10
source

Set white-space: normal;in CSS any LI element.

+1
source

All Articles