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>

Click to view the demo





















Home »
  jQuery Mobile »
    Example »




Button
Button Event
Button Icon
Button Text
Checkbox
Collapsible
Date
Dialog
Event
Footer
Form
Header
Icon
Input
Layout
Listview
Listview Divider
Listview Item
Loader
mobile_settings
Navbar
Page
Page Event
Popup
Radio
Select
Slider
Switch
Textarea
Theme