Set form field padding
Description
The following code shows how to set form field padding.
Example
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.ui-field-contain {<!-- w w w.j a v a 2s. c om-->
border-bottom-width: 1px !important;
padding-bottom: 1.5em !important;
}
</style>
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="content">
<form>
<div data-role="fieldcontain">
<label for="test01">Test 01:</label>
<input type="text" name="test01" id="test01" value=""/>
</div>
<div data-role="fieldcontain">
<label for="test02">Test 02:</label>
<input type="text" name="test02" id="test02" value=""/>
</div>
</form>
</div>
</div>
</body>
</html>