Align two buttons on header bar
Description
The following code shows how to align two buttons on header bar.
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">
<style type='text/css'>
.ui-header .ui-title {<!--from ww w. j a va2s . c om-->
margin-left: 2px !important;
text-align: left !important;
width: 150px !important;
}
.second.ui-btn-right {
right: 80px !important
}
</style>
</head>
<body>
<div data-role="header">
<a href="" data-icon="delete" class="second ui-btn-right">Cancel</a>
<h1>Edit Contact</h1>
<a href="" data-icon="check" data-theme="b"
class="ui-btn-right">Save</a>
</div>
<div data-role="footer" data-position="fixed">
<h1>footer</h1>
</div>
</body>
</html>