Question

Im using jQuery Mobile listview with data-inset="true"`

<ul data-role="listview" data-inset="true" data-theme="e">
    <li><h3> ... long string ... </h3></li>
</ul>

If the item was too long, the string was truncated. Is there other way or best approach to display the whole long string?

Was it helpful?

Solution

Working example: http://jsfiddle.net/Gajotres/BxfhV/

ul li .ui-li-heading {
    white-space: normal !important;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top