Align element aside on listview
Description
The following code shows how to align element aside on listview.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.css">
</head><!-- w w w .j a v a2 s. co m-->
<body>
<ul data-role="listview" data-inset="true" data-theme="d"
data-divider-theme="a" style="white-space: normal">
<a class="changePageButton" data-transition="slide">
<li data-role="list-divider"
role="heading"
class="ui-li ui-li-divider ui-btn ui-bar-c ui-corner-top">
<h2>
Flavors<small> (0.5 mi)</small>
</h2>
<p class="ui-li-aside">
<strong>$10</strong>PM
</p>
<p>$40 for $20</p>
</li>
</a>
</ul>
</body>
</html>