Custom style button
Description
The following code shows how to custom style button.
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-grid-c .ui-btn {<!-- www . j a v a 2 s.c o m-->
background: #2b6dbc;
color: #FFFFFF;
border: 1px solid #000;
border-radius: 3px;
width: 100px;
text-shadow: none;
margin-left: 4px;
}
</style>
</head>
<body>
<div class="ui-grid-c" id="searchbar" style="" class="searchContend_h">
<input name="text-12" id="text-12" value="" type="text"
autocorrect="off" class="searchbox">
<a href="#" data-role="button" data-corners="false" data-inline="true"
class="search">Search</a>
<a href="#" data-role="button" data-corners="false" data-inline="true" id="next" class="searchNext"
disabled>Next</a>
<a href="#" data-role="button" data-corners="false"
data-inline="true" id="prev" class="searchPrev" disabled>Previous</a>
</div>
</body>
</html>