Layout three button evenly in single line
Description
The following code shows how to layout three button evenly in single line.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-2.0.1.js'></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.js"></script>
</head><!-- w w w . j a va 2s . c o m-->
<body>
<div data-role="content">
<div class="ui-grid-b" data-position="fixed">
<div class="ui-block-a">
<button id="ONEButton" data-theme="d">ONE</button>
</div>
<div class="ui-block-b">
<button data-theme="d">TWO</button>
</div>
<div class="ui-block-c">
<button data-theme="d">THREE</button>
</div>
</div>
</div>
</body>
</html>