css - JqMobile表格样式坏了?

标签 css jquery-mobile

我的表有问题 JqMobile 样式在我上传到服务器时不起作用 我希望数据水平不损坏。

http://jsfiddle.net/Tbu9U/ enter image description here html

    <table data-role="table" id="productOrders" data-mode="reflow" class="ui-table ui-table-reflow">
   <thead>
      <tr>
         <th>Code</th>
         <th>Name</th>
         <th>Price</th>
         <th>Qty.</th>
         <th>Ext.</th>
      </tr>
   </thead>
   <tbody>
      <tr>
         <td><b class="ui-table-cell-label">Code</b></td>
         <td><b class="ui-table-cell-label">Name</b></td>
         <td><b class="ui-table-cell-label">Price</b></td>
         <td><b class="ui-table-cell-label">Qty.</b></td>
         <td><b class="ui-table-cell-label">Ext.</b></td>
      </tr>
      <tr>
         <td>uj7uu</td>
         <td>games</td>
         <td class="dollars">$70</td>
         <td>3</td>
         <td>$210</td>
      </tr>
   </tbody>
</table>

最佳答案

这是您更新的 fiddle : http://jsfiddle.net/ezanker/Tbu9U/1/

唯一的变化是表格标记,删除类 ui-table-reflow 并添加 ui-responsive:

<table data-role="table" id="productOrders" data-mode="reflow" class="ui-table ui-responsive">

关于css - JqMobile表格样式坏了?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20356274/

相关文章:

javascript - 使用 Jquery 控制 <div> 标签内的 <span> 标签

javascript - 使用 jquery mobile 克隆一个页面

jquery - 删除元素 CSS 之前的内容

jquery-mobile - JQuery Mobile 固定工具栏和页脚栏消失?

javascript - Jquery Taphold 不适用于 DragDealerjs slider

jQuery Mobile - Visual Studio 2010 的智能感知

css - JQuery 手机 : Dynamically filled Selects do not get css styles

html - 将鼠标悬停在按钮上时,CSS 会更改跨度的颜色

javascript - 显示一个 div 并保持它显示()如果我点击它

javascript - 在页面上选择和突出显示 html 的最佳方式是什么?