I can´t figure out how to do multilined listview items in jQuery Mobile depicted in the image below (some additional infos...)
Any ideas?
Thanks a lot, Jakob
If your li
items use the following format:
<li>
<a href="first.html">
<h3>First line</h3>
<p>Whatever goes on the second line</p>
</a> </li>
then add the following to your CSS:
.ui-li-desc {white-space:normal;}
As an example, see this jsFiddle.