I am using jQuery Mobile and has <LI>long text (description A).
<LI>
My problem is that it only displays a few words following the "..." (3 dots)
How can I make it show the entire line?
you can use formatting like jqmobile in docs
and then overwrite / replace / add your own .ui-li-desc, for example, using white-space: normal;instead of existingwhite-space: nowrap;
.ui-li-desc
white-space: normal;
white-space: nowrap;
so you can:
Set white-space: normal;in CSS any LI element.