JSFiddle - React, Tailwind, and code Playground
by dima_k
HTML
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css">
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<div data-role="page" data-add-back-btn="true">
<div data-role="header" data-position="fixed">
<h1>Dividers</h1>
</div>
<div data-role="content">
<!-- add data-autodividers="true" -->
<ul data-role="listview">
<li data-role="list-divider">My</li>
<li><a href="#">Acer</a></li>
<li><a href="#">Asus</a></li>
<li><a href="#">Dell</a></li>
<li><a href="#">LG</a></li>
<li><a href="#">Ligitech</a></li>
<li><a href="#">Panasonic</a></li>
<li><a href="#">Sony</a></li>
</ul>
</div>
<div data-role="footer" data-position="fixed">
<h1>fotter</h1>
</div>
</div>