Set height for page footer
Description
The following code shows how to set height for page footer.
Example
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.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.1.0/jquery.mobile-1.1.0.min.js"></script>
<style type='text/css'>
.ui-mobile .ui-page .ui-footer {<!-- www . j av a2s .co m-->
height: 30%;
}
</style>
</head>
<body>
<div data-role="page">
<div data-role="content">Content</div>
<div data-role="footer" data-position="fixed">Footer</div>
</div>
</script>
</body>
</html>