Hold paragraph in listview
Description
The following code shows how to hold paragraph in listview.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.5.2.js'></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
</head><!--from w ww . j av a2s .c o m-->
<body>
<div data-role="page">
<div data-role="header">
<h1>Page 1</h1>
</div>
<div data-role="content">
<ul data-role="listview">
<li data-role="list-divider">List Heading</li>
<li>
<p>
A very long paragraph that <b>should</b> be wrapped when it
exceeds the length of the visible line.
</p>
</li>
</ul>
</div>
</div>
</body>
</html>