实例 Query Mobile 网格 3 列

x
 
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">
<script src="https://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script src="https://libs.baidu.com/jquerymobile/1.3.0/jquery.mobile-1.3.0.min.js"></script>
</head>
<body>
<div data-role="page" id="pageone">
  <div data-role="header">
  <h1></h1>
  </div>
  <div data-role="content">
   <p>三列布局:</p>
   <div class="ui-grid-b">
     <div class="ui-block-a"><a href="#" data-role="button">第一列按钮</a><br>
       <span>第一列:This is some text. This is some text. This is some text. This is some text. This is some text.</span>
     </div>
     <div class="ui-block-b">
       <a href="#" data-role="button">第二列按钮</a><br>
       <span>第二列:This is some text. This is some text. This is some text. This is some text.</span>
     </div>
     <div class="ui-block-c">
       <a href="#" data-role="button">第三列按钮</a><br>
       <span>第三列:This is some text. This is some text. This is some text. This is some text.</span>
     </div>
   </div>
  </div>
</div> 
</body>
</html>
                    

输出结果